cqc-quam-state 2025.6.4__tar.gz → 2025.6.17__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.

Potentially problematic release.


This version of cqc-quam-state might be problematic. Click here for more details.

@@ -0,0 +1,163 @@
1
+ Metadata-Version: 2.4
2
+ Name: cqc-quam-state
3
+ Version: 2025.6.17
4
+ Summary: Add your description here
5
+ Author-email: JUNIQ Software Team <info-juniq@fz-juelich.de>
6
+ License: MIT
7
+ Project-URL: Homepage, https://gitlab.jsc.fz-juelich.de/qip/cqc/cqc-quam-state
8
+ Project-URL: Repository, https://gitlab.jsc.fz-juelich.de/qip/cqc/cqc-quam-state
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Requires-Python: >=3.11
15
+ Description-Content-Type: text/markdown
16
+ Requires-Dist: click>=8.0.0
17
+
18
+ # CQC QUAM State
19
+
20
+ A command-line tool for managing CQC QuAM (Quantum Abstract Machine) state configuration.
21
+
22
+ ## Overview
23
+
24
+ This package provides access to calibrated quantum device configurations and state files. It includes:
25
+
26
+ - Pre-calibrated QuAM state files (JSON format)
27
+ - CLI tools for managing and loading state configurations
28
+ - Environment variable management for QuAM state paths
29
+
30
+ To quickly set the `QUAM_STATE_PATH` environment variable to the current calibrated state (after installing and activating the environment):
31
+
32
+ ```bash
33
+ source load-cqc-quam
34
+ ```
35
+
36
+ **Note**: The package version follows the format `YYYY.MM.DD[.X]` where `YYYY.MM.DD` indicates the date of the last calibration, and the optional `.X` is a sub-version for multiple releases on the same day.
37
+
38
+ ## Installation
39
+
40
+ Install the package using `uv` (recommended) or `pip`. Make sure to use the latest version to get the most recent calibration data:
41
+
42
+ ### Using uv (recommended)
43
+
44
+ ```bash
45
+ uv venv
46
+ source .venv/bin/activate
47
+ uv pip install cqc-quam-state==2025.6.4.1
48
+ ```
49
+
50
+ ### Using pip
51
+
52
+ ```bash
53
+ pip install cqc-quam-state==2025.6.4.1
54
+ ```
55
+
56
+ ### Installing the latest version
57
+
58
+ To install the most recent calibration data, check for the latest version:
59
+
60
+ ```bash
61
+ # Find the latest version
62
+ pip index versions cqc-quam-state
63
+
64
+ # Install the latest version (e.g., if there are multiple releases today)
65
+ pip install cqc-quam-state==2025.6.4.3
66
+ ```
67
+
68
+ ## Usage
69
+
70
+ ### Quick Start
71
+
72
+ The simplest way to use this package is to source the provided script, which sets the `QUAM_STATE_PATH` environment variable:
73
+
74
+ ```bash
75
+ source load-cqc-quam
76
+ ```
77
+
78
+ This will set `QUAM_STATE_PATH` to point to the current calibrated state files included in the package.
79
+
80
+ ### CLI Commands
81
+
82
+ The package also provides a `cqc-quam-state` CLI tool for more advanced usage:
83
+
84
+ #### Get Help
85
+
86
+ ```bash
87
+ cqc-quam-state --help
88
+ ```
89
+
90
+ #### Available Commands
91
+
92
+ - **`info`**: Display information about the current state
93
+ - **`load`**: Output the export command for setting `QUAM_STATE_PATH` (used by the `load-cqc-quam` script)
94
+ - **`set`**: Set configuration values (placeholder for future functionality)
95
+
96
+ #### Examples
97
+
98
+ Display current state information:
99
+
100
+ ```bash
101
+ cqc-quam-state info
102
+ ```
103
+
104
+ Get the export command for the QuAM state path:
105
+
106
+ ```bash
107
+ cqc-quam-state load
108
+ ```
109
+
110
+ Set configuration values:
111
+
112
+ ```bash
113
+ cqc-quam-state set
114
+ ```
115
+ (In development, the idea is to set the IP address and port of the OPX and octave and the calibration db dynamically here)
116
+
117
+ ## State Files
118
+
119
+ The package includes pre-calibrated state files in the `quam_state/` directory:
120
+
121
+ - **`state.json`**: Main QuAM state configuration containing octave settings, RF outputs, and calibration parameters
122
+ - **`wiring.json`**: Wiring configuration for the quantum device setup
123
+
124
+ These files are automatically included when you install the package and can be accessed via the `QUAM_STATE_PATH` environment variable.
125
+
126
+ ## Version Information
127
+
128
+ The package uses a date-based versioning system with optional sub-versions:
129
+
130
+ ### Version Format: `YYYY.MM.DD[.X]`
131
+
132
+ - **`YYYY.MM.DD`**: The calibration date ( generated from `date +"%Y.%-m.%-d"`)
133
+ - **`.X`**: Optional sub-version for multiple releases on the same day
134
+
135
+ ### Version Examples
136
+
137
+ - **`2025.6.4`**: First release on June 4, 2025
138
+ - **`2025.6.4.1`**: Second release on June 4, 2025 (updated calibration)
139
+ - **`2025.6.4.2`**: Third release on June 4, 2025
140
+ - **`2025.6.5`**: First release on June 5, 2025
141
+
142
+ ## Troubleshooting
143
+
144
+ ### Environment Variable Not Set
145
+
146
+ If the `QUAM_STATE_PATH` environment variable is not set after sourcing the script:
147
+
148
+ 1. Ensure you're in the correct virtual environment
149
+ 2. Verify the package is installed: `pip show cqc-quam-state`
150
+ 3. Try running the load command directly: `cqc-quam-state load`
151
+
152
+ ### Package Not Found
153
+
154
+ If you get import errors:
155
+
156
+ 1. Check if the package is installed: `pip list | grep cqc-quam-state`
157
+ 2. Ensure you're using the correct Python environment
158
+ 3. Try reinstalling: `pip install --force-reinstall cqc-quam-state`
159
+
160
+
161
+ ## License
162
+
163
+ This project is licensed under the MIT License.
@@ -0,0 +1,146 @@
1
+ # CQC QUAM State
2
+
3
+ A command-line tool for managing CQC QuAM (Quantum Abstract Machine) state configuration.
4
+
5
+ ## Overview
6
+
7
+ This package provides access to calibrated quantum device configurations and state files. It includes:
8
+
9
+ - Pre-calibrated QuAM state files (JSON format)
10
+ - CLI tools for managing and loading state configurations
11
+ - Environment variable management for QuAM state paths
12
+
13
+ To quickly set the `QUAM_STATE_PATH` environment variable to the current calibrated state (after installing and activating the environment):
14
+
15
+ ```bash
16
+ source load-cqc-quam
17
+ ```
18
+
19
+ **Note**: The package version follows the format `YYYY.MM.DD[.X]` where `YYYY.MM.DD` indicates the date of the last calibration, and the optional `.X` is a sub-version for multiple releases on the same day.
20
+
21
+ ## Installation
22
+
23
+ Install the package using `uv` (recommended) or `pip`. Make sure to use the latest version to get the most recent calibration data:
24
+
25
+ ### Using uv (recommended)
26
+
27
+ ```bash
28
+ uv venv
29
+ source .venv/bin/activate
30
+ uv pip install cqc-quam-state==2025.6.4.1
31
+ ```
32
+
33
+ ### Using pip
34
+
35
+ ```bash
36
+ pip install cqc-quam-state==2025.6.4.1
37
+ ```
38
+
39
+ ### Installing the latest version
40
+
41
+ To install the most recent calibration data, check for the latest version:
42
+
43
+ ```bash
44
+ # Find the latest version
45
+ pip index versions cqc-quam-state
46
+
47
+ # Install the latest version (e.g., if there are multiple releases today)
48
+ pip install cqc-quam-state==2025.6.4.3
49
+ ```
50
+
51
+ ## Usage
52
+
53
+ ### Quick Start
54
+
55
+ The simplest way to use this package is to source the provided script, which sets the `QUAM_STATE_PATH` environment variable:
56
+
57
+ ```bash
58
+ source load-cqc-quam
59
+ ```
60
+
61
+ This will set `QUAM_STATE_PATH` to point to the current calibrated state files included in the package.
62
+
63
+ ### CLI Commands
64
+
65
+ The package also provides a `cqc-quam-state` CLI tool for more advanced usage:
66
+
67
+ #### Get Help
68
+
69
+ ```bash
70
+ cqc-quam-state --help
71
+ ```
72
+
73
+ #### Available Commands
74
+
75
+ - **`info`**: Display information about the current state
76
+ - **`load`**: Output the export command for setting `QUAM_STATE_PATH` (used by the `load-cqc-quam` script)
77
+ - **`set`**: Set configuration values (placeholder for future functionality)
78
+
79
+ #### Examples
80
+
81
+ Display current state information:
82
+
83
+ ```bash
84
+ cqc-quam-state info
85
+ ```
86
+
87
+ Get the export command for the QuAM state path:
88
+
89
+ ```bash
90
+ cqc-quam-state load
91
+ ```
92
+
93
+ Set configuration values:
94
+
95
+ ```bash
96
+ cqc-quam-state set
97
+ ```
98
+ (In development, the idea is to set the IP address and port of the OPX and octave and the calibration db dynamically here)
99
+
100
+ ## State Files
101
+
102
+ The package includes pre-calibrated state files in the `quam_state/` directory:
103
+
104
+ - **`state.json`**: Main QuAM state configuration containing octave settings, RF outputs, and calibration parameters
105
+ - **`wiring.json`**: Wiring configuration for the quantum device setup
106
+
107
+ These files are automatically included when you install the package and can be accessed via the `QUAM_STATE_PATH` environment variable.
108
+
109
+ ## Version Information
110
+
111
+ The package uses a date-based versioning system with optional sub-versions:
112
+
113
+ ### Version Format: `YYYY.MM.DD[.X]`
114
+
115
+ - **`YYYY.MM.DD`**: The calibration date ( generated from `date +"%Y.%-m.%-d"`)
116
+ - **`.X`**: Optional sub-version for multiple releases on the same day
117
+
118
+ ### Version Examples
119
+
120
+ - **`2025.6.4`**: First release on June 4, 2025
121
+ - **`2025.6.4.1`**: Second release on June 4, 2025 (updated calibration)
122
+ - **`2025.6.4.2`**: Third release on June 4, 2025
123
+ - **`2025.6.5`**: First release on June 5, 2025
124
+
125
+ ## Troubleshooting
126
+
127
+ ### Environment Variable Not Set
128
+
129
+ If the `QUAM_STATE_PATH` environment variable is not set after sourcing the script:
130
+
131
+ 1. Ensure you're in the correct virtual environment
132
+ 2. Verify the package is installed: `pip show cqc-quam-state`
133
+ 3. Try running the load command directly: `cqc-quam-state load`
134
+
135
+ ### Package Not Found
136
+
137
+ If you get import errors:
138
+
139
+ 1. Check if the package is installed: `pip list | grep cqc-quam-state`
140
+ 2. Ensure you're using the correct Python environment
141
+ 3. Try reinstalling: `pip install --force-reinstall cqc-quam-state`
142
+
143
+
144
+ ## License
145
+
146
+ This project is licensed under the MIT License.
@@ -0,0 +1,163 @@
1
+ Metadata-Version: 2.4
2
+ Name: cqc-quam-state
3
+ Version: 2025.6.17
4
+ Summary: Add your description here
5
+ Author-email: JUNIQ Software Team <info-juniq@fz-juelich.de>
6
+ License: MIT
7
+ Project-URL: Homepage, https://gitlab.jsc.fz-juelich.de/qip/cqc/cqc-quam-state
8
+ Project-URL: Repository, https://gitlab.jsc.fz-juelich.de/qip/cqc/cqc-quam-state
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Requires-Python: >=3.11
15
+ Description-Content-Type: text/markdown
16
+ Requires-Dist: click>=8.0.0
17
+
18
+ # CQC QUAM State
19
+
20
+ A command-line tool for managing CQC QuAM (Quantum Abstract Machine) state configuration.
21
+
22
+ ## Overview
23
+
24
+ This package provides access to calibrated quantum device configurations and state files. It includes:
25
+
26
+ - Pre-calibrated QuAM state files (JSON format)
27
+ - CLI tools for managing and loading state configurations
28
+ - Environment variable management for QuAM state paths
29
+
30
+ To quickly set the `QUAM_STATE_PATH` environment variable to the current calibrated state (after installing and activating the environment):
31
+
32
+ ```bash
33
+ source load-cqc-quam
34
+ ```
35
+
36
+ **Note**: The package version follows the format `YYYY.MM.DD[.X]` where `YYYY.MM.DD` indicates the date of the last calibration, and the optional `.X` is a sub-version for multiple releases on the same day.
37
+
38
+ ## Installation
39
+
40
+ Install the package using `uv` (recommended) or `pip`. Make sure to use the latest version to get the most recent calibration data:
41
+
42
+ ### Using uv (recommended)
43
+
44
+ ```bash
45
+ uv venv
46
+ source .venv/bin/activate
47
+ uv pip install cqc-quam-state==2025.6.4.1
48
+ ```
49
+
50
+ ### Using pip
51
+
52
+ ```bash
53
+ pip install cqc-quam-state==2025.6.4.1
54
+ ```
55
+
56
+ ### Installing the latest version
57
+
58
+ To install the most recent calibration data, check for the latest version:
59
+
60
+ ```bash
61
+ # Find the latest version
62
+ pip index versions cqc-quam-state
63
+
64
+ # Install the latest version (e.g., if there are multiple releases today)
65
+ pip install cqc-quam-state==2025.6.4.3
66
+ ```
67
+
68
+ ## Usage
69
+
70
+ ### Quick Start
71
+
72
+ The simplest way to use this package is to source the provided script, which sets the `QUAM_STATE_PATH` environment variable:
73
+
74
+ ```bash
75
+ source load-cqc-quam
76
+ ```
77
+
78
+ This will set `QUAM_STATE_PATH` to point to the current calibrated state files included in the package.
79
+
80
+ ### CLI Commands
81
+
82
+ The package also provides a `cqc-quam-state` CLI tool for more advanced usage:
83
+
84
+ #### Get Help
85
+
86
+ ```bash
87
+ cqc-quam-state --help
88
+ ```
89
+
90
+ #### Available Commands
91
+
92
+ - **`info`**: Display information about the current state
93
+ - **`load`**: Output the export command for setting `QUAM_STATE_PATH` (used by the `load-cqc-quam` script)
94
+ - **`set`**: Set configuration values (placeholder for future functionality)
95
+
96
+ #### Examples
97
+
98
+ Display current state information:
99
+
100
+ ```bash
101
+ cqc-quam-state info
102
+ ```
103
+
104
+ Get the export command for the QuAM state path:
105
+
106
+ ```bash
107
+ cqc-quam-state load
108
+ ```
109
+
110
+ Set configuration values:
111
+
112
+ ```bash
113
+ cqc-quam-state set
114
+ ```
115
+ (In development, the idea is to set the IP address and port of the OPX and octave and the calibration db dynamically here)
116
+
117
+ ## State Files
118
+
119
+ The package includes pre-calibrated state files in the `quam_state/` directory:
120
+
121
+ - **`state.json`**: Main QuAM state configuration containing octave settings, RF outputs, and calibration parameters
122
+ - **`wiring.json`**: Wiring configuration for the quantum device setup
123
+
124
+ These files are automatically included when you install the package and can be accessed via the `QUAM_STATE_PATH` environment variable.
125
+
126
+ ## Version Information
127
+
128
+ The package uses a date-based versioning system with optional sub-versions:
129
+
130
+ ### Version Format: `YYYY.MM.DD[.X]`
131
+
132
+ - **`YYYY.MM.DD`**: The calibration date ( generated from `date +"%Y.%-m.%-d"`)
133
+ - **`.X`**: Optional sub-version for multiple releases on the same day
134
+
135
+ ### Version Examples
136
+
137
+ - **`2025.6.4`**: First release on June 4, 2025
138
+ - **`2025.6.4.1`**: Second release on June 4, 2025 (updated calibration)
139
+ - **`2025.6.4.2`**: Third release on June 4, 2025
140
+ - **`2025.6.5`**: First release on June 5, 2025
141
+
142
+ ## Troubleshooting
143
+
144
+ ### Environment Variable Not Set
145
+
146
+ If the `QUAM_STATE_PATH` environment variable is not set after sourcing the script:
147
+
148
+ 1. Ensure you're in the correct virtual environment
149
+ 2. Verify the package is installed: `pip show cqc-quam-state`
150
+ 3. Try running the load command directly: `cqc-quam-state load`
151
+
152
+ ### Package Not Found
153
+
154
+ If you get import errors:
155
+
156
+ 1. Check if the package is installed: `pip list | grep cqc-quam-state`
157
+ 2. Ensure you're using the correct Python environment
158
+ 3. Try reinstalling: `pip install --force-reinstall cqc-quam-state`
159
+
160
+
161
+ ## License
162
+
163
+ This project is licensed under the MIT License.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "cqc-quam-state"
7
- version = "2025.06.04"
7
+ version = "2025.6.17"
8
8
  description = "Add your description here"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -2,9 +2,9 @@
2
2
  "octaves": {
3
3
  "oct1": {
4
4
  "name": "oct1",
5
- "ip": "127.0.0.1",
5
+ "ip": "134.94.1.250",
6
6
  "port": 11051,
7
- "calibration_db_path": "/opt/cqc/northface-qua-libs",
7
+ "calibration_db_path": "/p/project1/cqc/karnad1/home/Sandbox/Projects/northface-qua-libs",
8
8
  "RF_outputs": {
9
9
  "1": {
10
10
  "id": 1,
@@ -52,9 +52,9 @@
52
52
  },
53
53
  "oct2": {
54
54
  "name": "oct2",
55
- "ip": "127.0.0.1",
55
+ "ip": "134.94.1.250",
56
56
  "port": 11050,
57
- "calibration_db_path": "/opt/cqc/northface-qua-libs",
57
+ "calibration_db_path": "/p/project1/cqc/karnad1/home/Sandbox/Projects/northface-qua-libs",
58
58
  "RF_outputs": {
59
59
  "1": {
60
60
  "id": 1,
@@ -218,11 +218,11 @@
218
218
  "axis_angle": 0,
219
219
  "amplitude": 0.3,
220
220
  "alpha": -0.1477090444870001,
221
- "anharmonicity": 212000000,
221
+ "anharmonicity": 215000000,
222
222
  "__class__": "quam.components.pulses.DragCosinePulse"
223
223
  }
224
224
  },
225
- "intermediate_frequency": -328329174.0985659,
225
+ "intermediate_frequency": -328313363.2418174,
226
226
  "opx_output_I": "#/wiring/qubits/q0/xy/opx_output_I",
227
227
  "opx_output_Q": "#/wiring/qubits/q0/xy/opx_output_Q",
228
228
  "frequency_converter_up": "#/wiring/qubits/q0/xy/frequency_converter_up"
@@ -270,36 +270,36 @@
270
270
  0.863
271
271
  ]
272
272
  ],
273
- "GEF_frequency_shift": -550000,
273
+ "GEF_frequency_shift": 250000,
274
274
  "gef_centers": [
275
275
  [
276
- 0.0007271524177294065,
277
- 0.0002745697169736515
276
+ 0.000310791689063517,
277
+ -0.00036182014703891116
278
278
  ],
279
279
  [
280
- 0.00023722949128060408,
281
- 0.0003897309023200437
280
+ 0.0004136444707638535,
281
+ -0.0002811028176184302
282
282
  ],
283
283
  [
284
- 0.0006787480884759354,
285
- 0.0007846267028232854
284
+ 0.0008999178022427371,
285
+ -0.00040115389458775453
286
286
  ]
287
287
  ],
288
288
  "gef_confusion_matrix": [
289
289
  [
290
- 0.8295,
291
- 0.142,
292
- 0.0285
290
+ 0.7195,
291
+ 0.253,
292
+ 0.0275
293
293
  ],
294
294
  [
295
- 0.1775,
296
- 0.7775,
297
- 0.045
295
+ 0.4185,
296
+ 0.242,
297
+ 0.3395
298
298
  ],
299
299
  [
300
- 0.1735,
301
- 0.0535,
302
- 0.773
300
+ 0.068,
301
+ 0.0455,
302
+ 0.8865
303
303
  ]
304
304
  ],
305
305
  "operations": {
@@ -329,13 +329,13 @@
329
329
  "opx_output_Q": "#/wiring/qubits/q0/rr/opx_output_Q",
330
330
  "frequency_converter_up": "#/wiring/qubits/q0/rr/frequency_converter_up"
331
331
  },
332
- "anharmonicity": 215000000,
332
+ "anharmonicity": 216000000,
333
333
  "freq_vs_flux_01_quad_term": -21271975454.450764,
334
334
  "T1": 5.633926695167223e-05,
335
- "T2ramsey": 2.9478010100416558e-05,
335
+ "T2ramsey": 1.9384092706988183e-05,
336
336
  "phi0_current": 33.13161776022881,
337
337
  "phi0_voltage": 0.6626323552045763,
338
- "GEF_frequency_shift": -350000,
338
+ "GEF_frequency_shift": 550000,
339
339
  "chi": -300000.0,
340
340
  "grid_location": "0,2"
341
341
  },
@@ -462,13 +462,13 @@
462
462
  "length": 32,
463
463
  "digital_marker": "ON",
464
464
  "axis_angle": 0,
465
- "amplitude": 0.11598478514766845,
465
+ "amplitude": 0.11781753547762187,
466
466
  "alpha": -0.45281408225653225,
467
- "anharmonicity": 209000000,
467
+ "anharmonicity": 216000000,
468
468
  "__class__": "quam.components.pulses.DragCosinePulse"
469
469
  }
470
470
  },
471
- "intermediate_frequency": -224767701.30089152,
471
+ "intermediate_frequency": -225571804.0483422,
472
472
  "opx_output_I": "#/wiring/qubits/q1/xy/opx_output_I",
473
473
  "opx_output_Q": "#/wiring/qubits/q1/xy/opx_output_Q",
474
474
  "frequency_converter_up": "#/wiring/qubits/q1/xy/frequency_converter_up"
@@ -516,36 +516,36 @@
516
516
  0.84
517
517
  ]
518
518
  ],
519
- "GEF_frequency_shift": -550000,
519
+ "GEF_frequency_shift": -350000,
520
520
  "gef_centers": [
521
521
  [
522
- 0.0010826054054610208,
523
- -0.0002214752495135107
522
+ 0.0010903473828765002,
523
+ -0.00017457227532449252
524
524
  ],
525
525
  [
526
- 0.0006717084243973213,
527
- -2.3745190453131985e-05
526
+ 0.00036660001555141575,
527
+ 4.8585532194891593e-05
528
528
  ],
529
529
  [
530
- 0.0008924805234906215,
531
- 0.0007344346313029966
530
+ 0.0007779714446772264,
531
+ 0.000678885956328958
532
532
  ]
533
533
  ],
534
534
  "gef_confusion_matrix": [
535
535
  [
536
- 0.832,
537
- 0.1485,
538
- 0.0195
536
+ 0.8465,
537
+ 0.132,
538
+ 0.0215
539
539
  ],
540
540
  [
541
- 0.3,
542
- 0.631,
543
- 0.069
541
+ 0.146,
542
+ 0.818,
543
+ 0.036
544
544
  ],
545
545
  [
546
- 0.1495,
547
- 0.1145,
548
- 0.736
546
+ 0.1175,
547
+ 0.104,
548
+ 0.7785
549
549
  ]
550
550
  ],
551
551
  "operations": {
@@ -575,13 +575,13 @@
575
575
  "opx_output_Q": "#/wiring/qubits/q1/rr/opx_output_Q",
576
576
  "frequency_converter_up": "#/wiring/qubits/q1/rr/frequency_converter_up"
577
577
  },
578
- "anharmonicity": 216000000,
578
+ "anharmonicity": 215000000,
579
579
  "freq_vs_flux_01_quad_term": -20970339507.567898,
580
580
  "T1": 5.109741356272203e-05,
581
- "T2ramsey": 3.64704707422865e-05,
581
+ "T2ramsey": 4.261936164722244e-05,
582
582
  "phi0_current": 32.889895121907706,
583
583
  "phi0_voltage": 0.6577979024381542,
584
- "GEF_frequency_shift": -300000,
584
+ "GEF_frequency_shift": -200000,
585
585
  "chi": -300000.0,
586
586
  "grid_location": "2,2"
587
587
  },
@@ -708,13 +708,13 @@
708
708
  "length": 32,
709
709
  "digital_marker": "ON",
710
710
  "axis_angle": 0,
711
- "amplitude": 0.09726392217466302,
711
+ "amplitude": 0.09971831738296673,
712
712
  "alpha": -0.8103496685208672,
713
- "anharmonicity": 199500000,
713
+ "anharmonicity": 206500000,
714
714
  "__class__": "quam.components.pulses.DragCosinePulse"
715
715
  }
716
716
  },
717
- "intermediate_frequency": 360611449.8012683,
717
+ "intermediate_frequency": 360612167.459528,
718
718
  "opx_output_I": "#/wiring/qubits/q2/xy/opx_output_I",
719
719
  "opx_output_Q": "#/wiring/qubits/q2/xy/opx_output_Q",
720
720
  "frequency_converter_up": "#/wiring/qubits/q2/xy/frequency_converter_up"
@@ -762,36 +762,36 @@
762
762
  0.881
763
763
  ]
764
764
  ],
765
- "GEF_frequency_shift": -550000,
765
+ "GEF_frequency_shift": -150000,
766
766
  "gef_centers": [
767
767
  [
768
- 0.0010792078568300503,
769
- -0.0002837486410771317
768
+ 0.0007987691114826543,
769
+ -0.0006547517044056397
770
770
  ],
771
771
  [
772
- 0.0004586968402818406,
773
- -6.499941994607904e-05
772
+ 0.0003668582977982026,
773
+ -0.00022243873614160518
774
774
  ],
775
775
  [
776
- 0.0006723054693134915,
777
- 0.0005800143642778039
776
+ 0.0006570750067571872,
777
+ 0.0001403923507233918
778
778
  ]
779
779
  ],
780
780
  "gef_confusion_matrix": [
781
781
  [
782
- 0.849,
783
- 0.1245,
784
- 0.0265
782
+ 0.8695,
783
+ 0.1115,
784
+ 0.019
785
785
  ],
786
786
  [
787
- 0.143,
788
- 0.8195,
789
- 0.0375
787
+ 0.155,
788
+ 0.807,
789
+ 0.038
790
790
  ],
791
791
  [
792
- 0.116,
793
- 0.0575,
794
- 0.8265
792
+ 0.1375,
793
+ 0.2555,
794
+ 0.607
795
795
  ]
796
796
  ],
797
797
  "operations": {
@@ -821,13 +821,13 @@
821
821
  "opx_output_Q": "#/wiring/qubits/q2/rr/opx_output_Q",
822
822
  "frequency_converter_up": "#/wiring/qubits/q2/rr/frequency_converter_up"
823
823
  },
824
- "anharmonicity": 206500000,
824
+ "anharmonicity": 195500000,
825
825
  "freq_vs_flux_01_quad_term": -23427264013.63086,
826
826
  "T1": 4.589418554059009e-05,
827
- "T2ramsey": 1.467762175523816e-05,
827
+ "T2ramsey": -0.00011687947024941356,
828
828
  "phi0_current": 37.24650662137818,
829
829
  "phi0_voltage": 0.7449301324275637,
830
- "GEF_frequency_shift": -350000,
830
+ "GEF_frequency_shift": -50000,
831
831
  "chi": -200000.0,
832
832
  "grid_location": "1,1"
833
833
  },
@@ -954,13 +954,13 @@
954
954
  "length": 32,
955
955
  "digital_marker": "ON",
956
956
  "axis_angle": 0,
957
- "amplitude": 0.2374469818032762,
957
+ "amplitude": 0.22977486170182818,
958
958
  "alpha": 0.0051871539720758945,
959
- "anharmonicity": 201500000,
959
+ "anharmonicity": 188500000,
960
960
  "__class__": "quam.components.pulses.DragCosinePulse"
961
961
  }
962
962
  },
963
- "intermediate_frequency": -205677491.66457,
963
+ "intermediate_frequency": -205585963.2153582,
964
964
  "opx_output_I": "#/wiring/qubits/q3/xy/opx_output_I",
965
965
  "opx_output_Q": "#/wiring/qubits/q3/xy/opx_output_Q",
966
966
  "frequency_converter_up": "#/wiring/qubits/q3/xy/frequency_converter_up"
@@ -1008,36 +1008,36 @@
1008
1008
  0.893
1009
1009
  ]
1010
1010
  ],
1011
- "GEF_frequency_shift": -550000,
1011
+ "GEF_frequency_shift": 100000,
1012
1012
  "gef_centers": [
1013
1013
  [
1014
- 0.0012088648026312573,
1015
- 8.335176582866667e-06
1014
+ 0.0004519606686673483,
1015
+ -0.000468015140187994
1016
1016
  ],
1017
1017
  [
1018
- 0.0007319577342156882,
1019
- 4.0843074081663704e-05
1018
+ 0.0008039520745429287,
1019
+ -5.467933722993194e-05
1020
1020
  ],
1021
1021
  [
1022
- 0.0005759599392643987,
1023
- 0.0005162057567392421
1022
+ 0.0011573121178923684,
1023
+ -0.0001492777533078943
1024
1024
  ]
1025
1025
  ],
1026
1026
  "gef_confusion_matrix": [
1027
1027
  [
1028
- 0.855,
1029
- 0.125,
1030
- 0.02
1028
+ 0.918,
1029
+ 0.072,
1030
+ 0.01
1031
1031
  ],
1032
1032
  [
1033
- 0.131,
1034
- 0.843,
1035
- 0.026
1033
+ 0.1095,
1034
+ 0.85,
1035
+ 0.0405
1036
1036
  ],
1037
1037
  [
1038
- 0.109,
1039
- 0.1215,
1040
- 0.7695
1038
+ 0.071,
1039
+ 0.111,
1040
+ 0.818
1041
1041
  ]
1042
1042
  ],
1043
1043
  "operations": {
@@ -1067,13 +1067,13 @@
1067
1067
  "opx_output_Q": "#/wiring/qubits/q3/rr/opx_output_Q",
1068
1068
  "frequency_converter_up": "#/wiring/qubits/q3/rr/frequency_converter_up"
1069
1069
  },
1070
- "anharmonicity": 188500000,
1070
+ "anharmonicity": 195500000,
1071
1071
  "freq_vs_flux_01_quad_term": -25844077306.14595,
1072
1072
  "T1": 3.432181658112503e-05,
1073
- "T2ramsey": 2.641101555667975e-05,
1073
+ "T2ramsey": 1.6022018652603273e-05,
1074
1074
  "phi0_current": 42.229720068471536,
1075
1075
  "phi0_voltage": 0.8445944013694308,
1076
- "GEF_frequency_shift": -350000,
1076
+ "GEF_frequency_shift": 0,
1077
1077
  "chi": -150000.0,
1078
1078
  "grid_location": "0,0"
1079
1079
  },
@@ -1200,13 +1200,13 @@
1200
1200
  "length": 32,
1201
1201
  "digital_marker": "ON",
1202
1202
  "axis_angle": 0,
1203
- "amplitude": 0.1137958480582518,
1203
+ "amplitude": 0.11576358077230305,
1204
1204
  "alpha": -1.815213890059611,
1205
- "anharmonicity": 196000000,
1205
+ "anharmonicity": 193000000,
1206
1206
  "__class__": "quam.components.pulses.DragCosinePulse"
1207
1207
  }
1208
1208
  },
1209
- "intermediate_frequency": 187643340.55028865,
1209
+ "intermediate_frequency": 186927850.3017165,
1210
1210
  "opx_output_I": "#/wiring/qubits/q4/xy/opx_output_I",
1211
1211
  "opx_output_Q": "#/wiring/qubits/q4/xy/opx_output_Q",
1212
1212
  "frequency_converter_up": "#/wiring/qubits/q4/xy/frequency_converter_up"
@@ -1254,36 +1254,36 @@
1254
1254
  0.853
1255
1255
  ]
1256
1256
  ],
1257
- "GEF_frequency_shift": -350000,
1257
+ "GEF_frequency_shift": 50000,
1258
1258
  "gef_centers": [
1259
1259
  [
1260
- -0.00028938949319084236,
1261
- -0.0009140529409481586
1260
+ -0.0005603870546376909,
1261
+ -0.0007155348918155244
1262
1262
  ],
1263
1263
  [
1264
- -0.0003241415068747198,
1265
- -0.0004599099596017117
1264
+ -0.0004890284457424054,
1265
+ -0.0003175648265009093
1266
1266
  ],
1267
1267
  [
1268
- 5.4820683995185314e-05,
1269
- -0.00024154671646057848
1268
+ -8.450383917377051e-05,
1269
+ -0.0002310909556573969
1270
1270
  ]
1271
1271
  ],
1272
1272
  "gef_confusion_matrix": [
1273
1273
  [
1274
- 0.895,
1275
- 0.081,
1276
- 0.024
1274
+ 0.921,
1275
+ 0.0685,
1276
+ 0.0105
1277
1277
  ],
1278
1278
  [
1279
- 0.148,
1280
- 0.821,
1281
- 0.031
1279
+ 0.0925,
1280
+ 0.801,
1281
+ 0.1065
1282
1282
  ],
1283
1283
  [
1284
- 0.0945,
1285
- 0.0775,
1286
- 0.828
1284
+ 0.0435,
1285
+ 0.1815,
1286
+ 0.775
1287
1287
  ]
1288
1288
  ],
1289
1289
  "operations": {
@@ -1313,13 +1313,13 @@
1313
1313
  "opx_output_Q": "#/wiring/qubits/q4/rr/opx_output_Q",
1314
1314
  "frequency_converter_up": "#/wiring/qubits/q4/rr/frequency_converter_up"
1315
1315
  },
1316
- "anharmonicity": 193000000,
1316
+ "anharmonicity": 184000000,
1317
1317
  "freq_vs_flux_01_quad_term": -19084791753.74047,
1318
1318
  "T1": 4.106197470698975e-05,
1319
- "T2ramsey": 1.530112898634111e-05,
1319
+ "T2ramsey": 1.6122668749050808e-05,
1320
1320
  "phi0_current": 42.185449982477124,
1321
1321
  "phi0_voltage": 0.8437089996495425,
1322
- "GEF_frequency_shift": -100000,
1322
+ "GEF_frequency_shift": 0,
1323
1323
  "chi": -150000.0,
1324
1324
  "grid_location": "2,0"
1325
1325
  }
@@ -1332,10 +1332,10 @@
1332
1332
  "gates": {
1333
1333
  "Cz_unipolar": {
1334
1334
  "flux_pulse_control": {
1335
- "length": 40,
1335
+ "length": 12,
1336
1336
  "id": "flux_pulse_control_q0",
1337
- "amplitude": 0.14454406053704685,
1338
- "zero_padding": 1,
1337
+ "amplitude": 0.14586458975879438,
1338
+ "zero_padding": 4,
1339
1339
  "__class__": "quam_libs.lib.pulses.FluxPulse"
1340
1340
  },
1341
1341
  "phase_shift_control": 0.4556640737718373,
@@ -1344,8 +1344,8 @@
1344
1344
  },
1345
1345
  "Cz": "#./Cz_unipolar"
1346
1346
  },
1347
- "J2": 12789612.944951762,
1348
- "detuning": 487517684.46660566,
1347
+ "J2": 62269117.736310415,
1348
+ "detuning": 498449680.1658137,
1349
1349
  "confusion": [
1350
1350
  [
1351
1351
  0.886,
@@ -1382,7 +1382,7 @@
1382
1382
  "flux_pulse_control": {
1383
1383
  "length": 40,
1384
1384
  "id": "flux_pulse_control_qubit2",
1385
- "amplitude": 0.12940933796142315,
1385
+ "amplitude": 0.12656497103563455,
1386
1386
  "zero_padding": 3,
1387
1387
  "__class__": "quam_libs.lib.pulses.FluxPulse"
1388
1388
  },
@@ -1392,8 +1392,8 @@
1392
1392
  },
1393
1393
  "Cz": "#./Cz_unipolar"
1394
1394
  },
1395
- "J2": 13189600.252141237,
1396
- "detuning": 389788932.73575693,
1395
+ "J2": 13292210.182576597,
1396
+ "detuning": 375274124.1361998,
1397
1397
  "confusion": [
1398
1398
  [
1399
1399
  0.929,
@@ -1428,9 +1428,9 @@
1428
1428
  "gates": {
1429
1429
  "Cz_unipolar": {
1430
1430
  "flux_pulse_control": {
1431
- "length": 44,
1431
+ "length": 12,
1432
1432
  "id": "flux_pulse_control_q2",
1433
- "amplitude": 0.12931661550091494,
1433
+ "amplitude": 0.11565683608197787,
1434
1434
  "zero_padding": 4,
1435
1435
  "__class__": "quam_libs.lib.pulses.FluxPulse"
1436
1436
  },
@@ -1440,8 +1440,8 @@
1440
1440
  },
1441
1441
  "Cz": "#./Cz_unipolar"
1442
1442
  },
1443
- "J2": 12365863.22352138,
1444
- "detuning": 429474457.1906815,
1443
+ "J2": 57886833.213249266,
1444
+ "detuning": 345703396.5485118,
1445
1445
  "confusion": [
1446
1446
  [
1447
1447
  0.927,
@@ -1476,10 +1476,10 @@
1476
1476
  "gates": {
1477
1477
  "Cz_unipolar": {
1478
1478
  "flux_pulse_control": {
1479
- "length": 40,
1479
+ "length": 24,
1480
1480
  "id": "flux_pulse_control_q2",
1481
- "amplitude": 0.17162058566823965,
1482
- "zero_padding": 2,
1481
+ "amplitude": 0.16287890872570512,
1482
+ "zero_padding": 4,
1483
1483
  "__class__": "quam_libs.lib.pulses.FluxPulse"
1484
1484
  },
1485
1485
  "phase_shift_control": 0.8253994859896083,
@@ -1488,8 +1488,8 @@
1488
1488
  },
1489
1489
  "Cz": "#./Cz_unipolar"
1490
1490
  },
1491
- "J2": 13090582.651763763,
1492
- "detuning": 560172467.1639391,
1491
+ "J2": 23987165.65301784,
1492
+ "detuning": 506310725.375763,
1493
1493
  "confusion": [
1494
1494
  [
1495
1495
  0.9475,
@@ -95,12 +95,12 @@
95
95
  },
96
96
  "network": {
97
97
  "cloud": false,
98
- "host": "127.0.0.1",
98
+ "host": "134.94.1.250",
99
99
  "port": 10010,
100
100
  "cluster_name": "JSC_Cluster",
101
101
  "octave_ips": [
102
- "127.0.0.1",
103
- "127.0.0.1"
102
+ "134.94.1.250",
103
+ "134.94.1.250"
104
104
  ],
105
105
  "octave_ports": [
106
106
  11051,
@@ -1,78 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: cqc-quam-state
3
- Version: 2025.6.4
4
- Summary: Add your description here
5
- Author-email: JUNIQ Software Team <info-juniq@fz-juelich.de>
6
- License: MIT
7
- Project-URL: Homepage, https://gitlab.jsc.fz-juelich.de/qip/cqc/cqc-quam-state
8
- Project-URL: Repository, https://gitlab.jsc.fz-juelich.de/qip/cqc/cqc-quam-state
9
- Classifier: Development Status :: 3 - Alpha
10
- Classifier: Intended Audience :: Developers
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.11
14
- Requires-Python: >=3.11
15
- Description-Content-Type: text/markdown
16
- Requires-Dist: click>=8.0.0
17
-
18
- # CQC QUAM State
19
-
20
- A command-line tool for managing CQC QuAM state.
21
-
22
- ## Features
23
-
24
- The `cqc-quam-state` CLI provides the following commands:
25
-
26
- - `set`: Set configuration values for IP and calibration db location
27
- - `info`: Display information about the current state
28
- - `load`: Set the environment $QUAM_STATE to the current state
29
-
30
- ## Installation
31
-
32
- You can install this package using `uv` or `pip`:
33
-
34
- ```fish
35
- # Using uv
36
- uv venv
37
- source .venv/bin/activate.fish
38
- uv pip install -e .
39
-
40
- # Using pip
41
- pip install -e .
42
- ```
43
-
44
- ## Usage
45
-
46
- Once installed, you can use the CLI as follows:
47
-
48
- ### Get Help
49
-
50
- ```bash
51
- cqc-quam-state --help
52
- ```
53
-
54
- This will display all available commands and options.
55
-
56
- ### Set Command
57
-
58
- Use this command to set configuration values:
59
-
60
- ```bash
61
- cqc-quam-state set
62
- ```
63
-
64
- ### Info Command
65
-
66
- Use this command to display information about the current state:
67
-
68
- ```bash
69
- cqc-quam-state info
70
- ```
71
-
72
- ### Load Command
73
-
74
- Use this command to load data or configuration:
75
-
76
- ```bash
77
- cqc-quam-state load
78
- ```
@@ -1,61 +0,0 @@
1
- # CQC QUAM State
2
-
3
- A command-line tool for managing CQC QuAM state.
4
-
5
- ## Features
6
-
7
- The `cqc-quam-state` CLI provides the following commands:
8
-
9
- - `set`: Set configuration values for IP and calibration db location
10
- - `info`: Display information about the current state
11
- - `load`: Set the environment $QUAM_STATE to the current state
12
-
13
- ## Installation
14
-
15
- You can install this package using `uv` or `pip`:
16
-
17
- ```fish
18
- # Using uv
19
- uv venv
20
- source .venv/bin/activate.fish
21
- uv pip install -e .
22
-
23
- # Using pip
24
- pip install -e .
25
- ```
26
-
27
- ## Usage
28
-
29
- Once installed, you can use the CLI as follows:
30
-
31
- ### Get Help
32
-
33
- ```bash
34
- cqc-quam-state --help
35
- ```
36
-
37
- This will display all available commands and options.
38
-
39
- ### Set Command
40
-
41
- Use this command to set configuration values:
42
-
43
- ```bash
44
- cqc-quam-state set
45
- ```
46
-
47
- ### Info Command
48
-
49
- Use this command to display information about the current state:
50
-
51
- ```bash
52
- cqc-quam-state info
53
- ```
54
-
55
- ### Load Command
56
-
57
- Use this command to load data or configuration:
58
-
59
- ```bash
60
- cqc-quam-state load
61
- ```
@@ -1,78 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: cqc-quam-state
3
- Version: 2025.6.4
4
- Summary: Add your description here
5
- Author-email: JUNIQ Software Team <info-juniq@fz-juelich.de>
6
- License: MIT
7
- Project-URL: Homepage, https://gitlab.jsc.fz-juelich.de/qip/cqc/cqc-quam-state
8
- Project-URL: Repository, https://gitlab.jsc.fz-juelich.de/qip/cqc/cqc-quam-state
9
- Classifier: Development Status :: 3 - Alpha
10
- Classifier: Intended Audience :: Developers
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.11
14
- Requires-Python: >=3.11
15
- Description-Content-Type: text/markdown
16
- Requires-Dist: click>=8.0.0
17
-
18
- # CQC QUAM State
19
-
20
- A command-line tool for managing CQC QuAM state.
21
-
22
- ## Features
23
-
24
- The `cqc-quam-state` CLI provides the following commands:
25
-
26
- - `set`: Set configuration values for IP and calibration db location
27
- - `info`: Display information about the current state
28
- - `load`: Set the environment $QUAM_STATE to the current state
29
-
30
- ## Installation
31
-
32
- You can install this package using `uv` or `pip`:
33
-
34
- ```fish
35
- # Using uv
36
- uv venv
37
- source .venv/bin/activate.fish
38
- uv pip install -e .
39
-
40
- # Using pip
41
- pip install -e .
42
- ```
43
-
44
- ## Usage
45
-
46
- Once installed, you can use the CLI as follows:
47
-
48
- ### Get Help
49
-
50
- ```bash
51
- cqc-quam-state --help
52
- ```
53
-
54
- This will display all available commands and options.
55
-
56
- ### Set Command
57
-
58
- Use this command to set configuration values:
59
-
60
- ```bash
61
- cqc-quam-state set
62
- ```
63
-
64
- ### Info Command
65
-
66
- Use this command to display information about the current state:
67
-
68
- ```bash
69
- cqc-quam-state info
70
- ```
71
-
72
- ### Load Command
73
-
74
- Use this command to load data or configuration:
75
-
76
- ```bash
77
- cqc-quam-state load
78
- ```