Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move VQEProgram to Nature (backport #179) #182

Merged
merged 1 commit into from
May 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .pylintdict
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ logfile
lookback
majorana
maxdepth
maxiter
maxiters
mcardle
mezzacapo
Expand Down Expand Up @@ -219,6 +220,7 @@ qiskit
qiskit's
qload
qmolecule
qn
quantized
quantumcircuit
quartic
Expand Down Expand Up @@ -246,6 +248,7 @@ setia
setted
sklearn
spinop
spsa
statevector
statevectors
stdout
Expand Down
6 changes: 6 additions & 0 deletions docs/apidocs/qiskit_nature.runtime.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.. _qiskit_nature-runtime:

.. automodule:: qiskit_nature.runtime
:no-members:
:no-inherited-members:
:no-special-members:
1 change: 1 addition & 0 deletions qiskit_nature/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
operators
problems
results
runtime
transformers

"""
Expand Down
32 changes: 32 additions & 0 deletions qiskit_nature/runtime/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This code is part of Qiskit.
#
# (C) Copyright IBM 2021.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

"""
Qiskit Nature Runtime (:mod:`qiskit_nature.runtime`)
====================================================

.. currentmodule:: qiskit_nature.runtime

Programs that embed Qiskit Runtime in the algorithmic interfaces and facilitate usage of
algorithms and scripts in the cloud.

.. autosummary::
:toctree:

VQEProgram
VQEProgramResult

"""

from .vqe_program import VQEProgram, VQEProgramResult

__all__ = ["VQEProgram", "VQEProgramResult"]
Loading