From 32a5e1fa3b8b6cbebb127add034b29ba1b7a0844 Mon Sep 17 00:00:00 2001 From: zmorrell <66835471+zmorrell@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:27:09 -0400 Subject: [PATCH 1/2] Fix floating point modulus error in qchem utils (#45) --- src/qca/utils/chemistry_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qca/utils/chemistry_utils.py b/src/qca/utils/chemistry_utils.py index e42ab97..c5df3b2 100644 --- a/src/qca/utils/chemistry_utils.py +++ b/src/qca/utils/chemistry_utils.py @@ -194,7 +194,7 @@ def gsee_molecular_hamiltonian( value_per_circuit:float=None, repetitions_per_application:int=None ) -> int: - uid = int(random.random() % len(molecular_hamiltonians))*1000 + uid = random.randint(0, 1000) for idx, molecular_hamiltonian_info in enumerate(molecular_hamiltonians): molecular_hamiltonian = molecular_hamiltonian_info.molecular_hamiltonian molecular_hf_energy = molecular_hamiltonian_info.hf_energy From 5030e8ede3ab01ce656fa80300de5536d0b3608c Mon Sep 17 00:00:00 2001 From: Jonhas Colina <159941307+JonhasSC@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:03:21 -0400 Subject: [PATCH 2/2] added bibtex entry to qca paper (#46) --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 166f292..b2d0ce8 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,21 @@ This projct focuses on the documentation of applications for Quantum Computers. the notebooks/ directory. For taking a look at notebooks that are going through ongoing development, one can take a look at the `notebook/exotic-phases-nb` and `notebook/dicke-model-nb` branches. +# Citation + +If qc-applications proves useful in your work, please consider citing it using the following BibTeX citation for the pre-print, available [here](https://arxiv.org/abs/2406.06625): + +``` +@misc{2406.06625, + Title = {Potential Applications of Quantum Computing at Los Alamos National Laboratory}, + Author = {Andreas Bärtschi and Francesco Caravelli and Carleton Coffrin and Jonhas Colina and Stephan Eidenbenz and Abhijith Jayakumar and Scott Lawrence and Minseong Lee and Andrey Y. Lokhov and Avanish Mishra and Sidhant Misra and Zachary Morrell and Zain Mughal and Duff Neill and Andrei Piryatinski and Allen Scheie and Marc Vuffray and Yu Zhang}, + Year = {2024}, + Eprint = {2406.06625}, + archivePrefix={arXiv}, + primaryClass={quant-ph} +} +``` + ## License This code is provided under a BSD license as part of the Quantum Application Specifications and Benchmarks project (O4626).