Commit 3e4d3f4 1 parent 98813c7 commit 3e4d3f4 Copy full SHA for 3e4d3f4
File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 9
9
- :class:`ATOSDevice`,
10
10
- :class:`AWSDevice`,
11
11
- :class:`GOOGLEDevice`.
12
+
13
+ Not all combinations of :class:`AvailableDevice` and
14
+ :class:`JobType<mpqp.execution.job.JobType>` are possible, for each device
15
+ listed bellow, ``S`` means if supports the ``SAMPLE`` job type, ``SV`` the
16
+ ``STATE_VECTOR`` one and ``O`` the ``OBSERVABLE`` one.
12
17
"""
13
18
14
19
from abc import abstractmethod
@@ -52,7 +57,9 @@ class IBMDevice(AvailableDevice):
52
57
PULSE_SIMULATOR = "pulse_simulator"
53
58
54
59
AER_SIMULATOR = "aer_simulator"
60
+ """``S``"""
55
61
AER_SIMULATOR_STATEVECTOR = "aer_simulator_statevector"
62
+ """``SV``"""
56
63
AER_SIMULATOR_DENSITY_MATRIX = "aer_simulator_density_matrix"
57
64
AER_SIMULATOR_STABILIZER = "aer_simulator_stabilizer"
58
65
AER_SIMULATOR_MATRIX_PRODUCT_STATE = "aer_simulator_matrix_product_state"
Original file line number Diff line number Diff line change @@ -68,6 +68,8 @@ def __exit__(
68
68
69
69
70
70
def test_documentation ():
71
+ print (os .getcwd ())
72
+
71
73
test_globals = globals ().copy ()
72
74
test_globals .update (locals ())
73
75
@@ -100,5 +102,3 @@ def test_documentation():
100
102
assert runner .run (test ).failed == 0
101
103
else :
102
104
assert runner .run (test ).failed == 0
103
-
104
-
You can’t perform that action at this time.
0 commit comments