quantum-algorithms
Here are 204 public repositories matching this topic...
Adding type hints
To get this codebase up to standard, we need to add type hints. At the very least, perhaps we should start insisting that all new code has type hints added, but moreover we need to add typing to the code that currently exists.
This is a pretty large project, but luckily it can be done incrementally - I believe at this point it's a stretch goal for v1, if anyone wants to help it would be much ap
-
Updated
Jul 20, 2021 - Jupyter Notebook
-
Updated
Jul 14, 2021
-
Updated
Jul 11, 2021 - Julia
Currently, the Bosonic backend does not support the MeasureFock
and MeasureThreshold
measurement operations. It would be great to add support for these two operations to the Bosonic backend.
This would entail writing functions to calculate the different probabilities up to a given cutoff, using numpy to sample from this distribution and writing update rules for updating the post measurement
-
Updated
Aug 1, 2021 - C++
-
Updated
May 6, 2021 - Python
-
Updated
Jul 29, 2021 - Python
-
Updated
Dec 22, 2020 - Python
-
Updated
Jul 22, 2021 - Jupyter Notebook
-
Updated
Jul 23, 2021 - Jupyter Notebook
-
Updated
Apr 10, 2021 - Jupyter Notebook
-
Updated
May 28, 2020 - C++
-
Updated
Apr 5, 2021 - Jupyter Notebook
Whenever a slide has minted code, like so:
\begin{frame}[fragile]{Example minted}
\begin{minted}{python}
from qiskit_aqua import run_algorithm
print(run_algorithm(params)['result'])
\end{minted}
\end{frame}
One is unable to add the \pagenumber
before \end{frame}
as it gets left aligned instead of right aligned:
![image](https://user-images.githubusercontent.com/1
-
Updated
Jul 30, 2021 - Python
-
Updated
Jun 3, 2019 - Python
RDMs returned from pyscf are spin summed. Use https://sunqm.github.io/pyscf/_modules/pyscf/fci/direct_spin1.html#FCISolver.make_rdm12s
to return non-spin summed versions. Recombine spin-separated RDMs like run_psi4 to get spin-orbital rdms before returning to OpenFermion.
-
Updated
Mar 27, 2021 - Python
-
Updated
Aug 17, 2018 - Python
-
Updated
Jul 30, 2021 - Julia
-
Updated
Feb 5, 2021
-
Updated
Jan 8, 2021 - Python
-
Updated
Jun 17, 2021 - C++
-
Updated
Jun 28, 2021 - Python
-
Updated
May 6, 2021 - Python
-
Updated
Mar 19, 2020
-
Updated
Sep 14, 2019 - Python
Improve this page
Add a description, image, and links to the quantum-algorithms topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the quantum-algorithms topic, visit your repo's landing page and select "manage topics."
I'm getting type errors in pycharm when I'm trying to run a FrozenCircuit. I think there should be no downside to switching the type annotation to AbstractCircuit, of which both Circuit and FrozenCircuit derive?