qubecli 1.0.3__tar.gz → 1.0.4__tar.gz
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.
- {qubecli-1.0.3 → qubecli-1.0.4}/PKG-INFO +16 -1
- {qubecli-1.0.3 → qubecli-1.0.4}/README.md +15 -0
- {qubecli-1.0.3 → qubecli-1.0.4}/pyproject.toml +1 -1
- {qubecli-1.0.3 → qubecli-1.0.4}/.gitignore +0 -0
- {qubecli-1.0.3 → qubecli-1.0.4}/LICENSE +0 -0
- {qubecli-1.0.3 → qubecli-1.0.4}/src/qubecli/__init__.py +0 -0
- {qubecli-1.0.3 → qubecli-1.0.4}/src/qubecli/main.py +0 -0
- {qubecli-1.0.3 → qubecli-1.0.4}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: qubecli
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: QubeCore CLI — Command Line Interface for QubeCore
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -63,6 +63,21 @@ qubecore submit --backend backend1 \
|
|
|
63
63
|
--circuit 'OPENQASM 2.0;\ninclude "qelib1.inc";\nqreg q[2];\ncreg c[2];\nh q[0];\ncx q[0],q[1];\nmeasure q -> c;' \
|
|
64
64
|
--shots 100
|
|
65
65
|
|
|
66
|
+
# Submit a pulse job
|
|
67
|
+
qubecore submit-pulse --backend backend1 \
|
|
68
|
+
--pulse '{"channel": "ch0", "waveform": [...]}' \
|
|
69
|
+
--shots 100
|
|
70
|
+
|
|
71
|
+
# Submit a reset job
|
|
72
|
+
qubecore submit-reset --backend backend1 \
|
|
73
|
+
--qubits qubit_0,qubit_1 \
|
|
74
|
+
--shots 100
|
|
75
|
+
|
|
76
|
+
# Submit a calibration job
|
|
77
|
+
qubecore submit-calibration --backend backend1 \
|
|
78
|
+
--calibration-type widescan \
|
|
79
|
+
--params '{"qubit": "qubit_0", "span": 100000000, "n_points": 200, "num_shots": 100}'
|
|
80
|
+
|
|
66
81
|
# Check status
|
|
67
82
|
qubecore status --job-id <job_id>
|
|
68
83
|
|
|
@@ -29,6 +29,21 @@ qubecore submit --backend backend1 \
|
|
|
29
29
|
--circuit 'OPENQASM 2.0;\ninclude "qelib1.inc";\nqreg q[2];\ncreg c[2];\nh q[0];\ncx q[0],q[1];\nmeasure q -> c;' \
|
|
30
30
|
--shots 100
|
|
31
31
|
|
|
32
|
+
# Submit a pulse job
|
|
33
|
+
qubecore submit-pulse --backend backend1 \
|
|
34
|
+
--pulse '{"channel": "ch0", "waveform": [...]}' \
|
|
35
|
+
--shots 100
|
|
36
|
+
|
|
37
|
+
# Submit a reset job
|
|
38
|
+
qubecore submit-reset --backend backend1 \
|
|
39
|
+
--qubits qubit_0,qubit_1 \
|
|
40
|
+
--shots 100
|
|
41
|
+
|
|
42
|
+
# Submit a calibration job
|
|
43
|
+
qubecore submit-calibration --backend backend1 \
|
|
44
|
+
--calibration-type widescan \
|
|
45
|
+
--params '{"qubit": "qubit_0", "span": 100000000, "n_points": 200, "num_shots": 100}'
|
|
46
|
+
|
|
32
47
|
# Check status
|
|
33
48
|
qubecore status --job-id <job_id>
|
|
34
49
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|