mqt-core 3.3.0__cp314-cp314t-win_arm64.whl → 3.3.3__cp314-cp314t-win_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mqt/core/_version.py +3 -3
- mqt/core/bin/mqt-core-algorithms.dll +0 -0
- mqt/core/bin/mqt-core-circuit-optimizer.dll +0 -0
- mqt/core/bin/mqt-core-dd.dll +0 -0
- mqt/core/bin/mqt-core-ds.dll +0 -0
- mqt/core/bin/mqt-core-fomac.dll +0 -0
- mqt/core/bin/mqt-core-ir.dll +0 -0
- mqt/core/bin/mqt-core-na-fomac.dll +0 -0
- mqt/core/bin/mqt-core-na.dll +0 -0
- mqt/core/bin/mqt-core-qasm.dll +0 -0
- mqt/core/bin/mqt-core-qdmi-ddsim-device.dll +0 -0
- mqt/core/bin/mqt-core-qdmi-driver.dll +0 -0
- mqt/core/bin/mqt-core-qdmi-na-device.dll +0 -0
- mqt/core/bin/mqt-core-zx.dll +0 -0
- mqt/core/dd.cp314t-win_arm64.pyd +0 -0
- mqt/core/fomac.cp314t-win_arm64.pyd +0 -0
- mqt/core/include/mqt-core/ir/QuantumComputation.hpp +3 -0
- mqt/core/include/mqt-core/ir/operations/OpType.hpp +2 -0
- mqt/core/include/mqt-core/ir/operations/OpType.inc +4 -2
- mqt/core/include/mqt-core/mqt_ddsim_qdmi/device.h +602 -0
- mqt/core/include/mqt-core/mqt_ddsim_qdmi/types.h +78 -0
- mqt/core/include/mqt-core/qasm3/StdGates.hpp +169 -60
- mqt/core/include/mqt-core/qdmi/Driver.hpp +1 -0
- mqt/core/include/mqt-core/qdmi/dd/Device.hpp +310 -0
- mqt/core/ir/__init__.pyi +42 -0
- mqt/core/ir/operations.pyi +7 -0
- mqt/core/ir.cp314t-win_arm64.pyd +0 -0
- mqt/core/lib/mqt-core-algorithms.lib +0 -0
- mqt/core/lib/mqt-core-circuit-optimizer.lib +0 -0
- mqt/core/lib/mqt-core-dd.lib +0 -0
- mqt/core/lib/mqt-core-ds.lib +0 -0
- mqt/core/lib/mqt-core-fomac.lib +0 -0
- mqt/core/lib/mqt-core-ir.lib +0 -0
- mqt/core/lib/mqt-core-na-fomac.lib +0 -0
- mqt/core/lib/mqt-core-na.lib +0 -0
- mqt/core/lib/mqt-core-qasm.lib +0 -0
- mqt/core/lib/mqt-core-qdmi-ddsim-device.lib +0 -0
- mqt/core/lib/mqt-core-qdmi-driver.lib +0 -0
- mqt/core/lib/mqt-core-qdmi-na-device-gen.lib +0 -0
- mqt/core/lib/mqt-core-qdmi-na-device.lib +0 -0
- mqt/core/lib/mqt-core-zx.lib +0 -0
- mqt/core/lib/pkgconfig/spdlog.pc +1 -1
- mqt/core/lib/spdlog.lib +0 -0
- mqt/core/na/fomac.cp314t-win_arm64.pyd +0 -0
- mqt/core/plugins/qiskit/mqt_to_qiskit.py +2 -0
- mqt/core/plugins/qiskit/qiskit_to_mqt.py +4 -0
- mqt/core/share/cmake/mqt-core/mqt-core-config-version.cmake +3 -3
- mqt/core/share/cmake/mqt-core/mqt-core-config.cmake +1 -1
- mqt/core/share/cmake/mqt-core/mqt-core-targets-release.cmake +12 -1
- mqt/core/share/cmake/mqt-core/mqt-core-targets.cmake +24 -1
- mqt/core/{lib → share}/cmake/spdlog/spdlogConfigTargets.cmake +2 -0
- mqt/core/share/pkgconfig/nlohmann_json.pc +1 -1
- mqt_core-3.3.3.dist-info/DELVEWHEEL +2 -0
- {mqt_core-3.3.0.dist-info → mqt_core-3.3.3.dist-info}/METADATA +1 -1
- {mqt_core-3.3.0.dist-info → mqt_core-3.3.3.dist-info}/RECORD +61 -56
- mqt_core-3.3.0.dist-info/DELVEWHEEL +0 -2
- /mqt/core/{lib → share}/cmake/spdlog/spdlogConfig.cmake +0 -0
- /mqt/core/{lib → share}/cmake/spdlog/spdlogConfigTargets-release.cmake +0 -0
- /mqt/core/{lib → share}/cmake/spdlog/spdlogConfigVersion.cmake +0 -0
- {mqt_core-3.3.0.dist-info → mqt_core-3.3.3.dist-info}/WHEEL +0 -0
- {mqt_core-3.3.0.dist-info → mqt_core-3.3.3.dist-info}/entry_points.txt +0 -0
- {mqt_core-3.3.0.dist-info → mqt_core-3.3.3.dist-info}/licenses/LICENSE.md +0 -0
mqt/core/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '3.3.
|
|
32
|
-
__version_tuple__ = version_tuple = (3, 3,
|
|
31
|
+
__version__ = version = '3.3.3'
|
|
32
|
+
__version_tuple__ = version_tuple = (3, 3, 3)
|
|
33
33
|
|
|
34
|
-
__commit_id__ = commit_id = '
|
|
34
|
+
__commit_id__ = commit_id = 'g8c9f6ab24'
|
|
Binary file
|
|
Binary file
|
mqt/core/bin/mqt-core-dd.dll
CHANGED
|
Binary file
|
mqt/core/bin/mqt-core-ds.dll
CHANGED
|
Binary file
|
mqt/core/bin/mqt-core-fomac.dll
CHANGED
|
Binary file
|
mqt/core/bin/mqt-core-ir.dll
CHANGED
|
Binary file
|
|
Binary file
|
mqt/core/bin/mqt-core-na.dll
CHANGED
|
Binary file
|
mqt/core/bin/mqt-core-qasm.dll
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
mqt/core/bin/mqt-core-zx.dll
CHANGED
|
Binary file
|
mqt/core/dd.cp314t-win_arm64.pyd
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -252,6 +252,7 @@ public:
|
|
|
252
252
|
const Controls& controls, const Qubit target);
|
|
253
253
|
|
|
254
254
|
DECLARE_SINGLE_TARGET_TWO_PARAMETER_OPERATION(u2, phi, lambda)
|
|
255
|
+
DECLARE_SINGLE_TARGET_TWO_PARAMETER_OPERATION(r, theta, phi)
|
|
255
256
|
|
|
256
257
|
#undef DECLARE_SINGLE_TARGET_TWO_PARAMETER_OPERATION
|
|
257
258
|
|
|
@@ -327,6 +328,8 @@ public:
|
|
|
327
328
|
*/
|
|
328
329
|
void measureAll(bool addBits = true);
|
|
329
330
|
|
|
331
|
+
void bridge(const Targets& targets);
|
|
332
|
+
|
|
330
333
|
void reset(Qubit target);
|
|
331
334
|
void reset(const Targets& targets);
|
|
332
335
|
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
#include <istream>
|
|
15
15
|
#include <ostream>
|
|
16
16
|
#include <string>
|
|
17
|
+
#include <string_view>
|
|
17
18
|
|
|
18
19
|
namespace qc {
|
|
19
20
|
|
|
@@ -90,6 +91,7 @@ std::string shortName(OpType opType);
|
|
|
90
91
|
case RX:
|
|
91
92
|
case RY:
|
|
92
93
|
case RZ:
|
|
94
|
+
case R:
|
|
93
95
|
return true;
|
|
94
96
|
default:
|
|
95
97
|
return false;
|
|
@@ -32,8 +32,9 @@ HANDLE_OP_TYPE(14, SXdg, OpTypeInv, "sxdg")
|
|
|
32
32
|
HANDLE_OP_TYPE(15, RX, OpTypeNone, "rx")
|
|
33
33
|
HANDLE_OP_TYPE(16, RY, OpTypeNone, "ry")
|
|
34
34
|
HANDLE_OP_TYPE(17, RZ, OpTypeDiag, "rz")
|
|
35
|
+
HANDLE_OP_TYPE(41, R, OpTypeNone, "r")
|
|
35
36
|
HANDLE_OP_TYPE(18, SWAP, OpTypeNone, "swap")
|
|
36
|
-
HANDLE_OP_TYPE(19, iSWAP, OpTypeNone,
|
|
37
|
+
HANDLE_OP_TYPE(19, iSWAP, OpTypeNone, "iswap")
|
|
37
38
|
HANDLE_OP_TYPE(19, iSWAPdg, OpTypeInv, "iswapdg")
|
|
38
39
|
HANDLE_OP_TYPE(20, Peres, OpTypeNone, "peres")
|
|
39
40
|
HANDLE_OP_TYPE(20, Peresdg, OpTypeInv, "peresdg")
|
|
@@ -64,11 +65,12 @@ HANDLE_OP_TYPE(36, MultiAFalse, 0, "multi_a_false")
|
|
|
64
65
|
|
|
65
66
|
// Neutral atom shuttling operations
|
|
66
67
|
HANDLE_OP_TYPE(37, Move, 0, "move")
|
|
68
|
+
HANDLE_OP_TYPE(42, Bridge, 0, "bridge")
|
|
67
69
|
HANDLE_OP_TYPE(38, AodActivate, 0, "aod_activate")
|
|
68
70
|
HANDLE_OP_TYPE(39, AodDeactivate, 0, "aod_deactivate")
|
|
69
71
|
HANDLE_OP_TYPE(40, AodMove, 0, "aod_move")
|
|
70
72
|
|
|
71
|
-
LAST_OP_TYPE(
|
|
73
|
+
LAST_OP_TYPE(43)
|
|
72
74
|
|
|
73
75
|
|
|
74
76
|
#undef OpTypeInv
|