cqc-quam-state 2025.6.4__tar.gz → 2025.6.5__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.
- cqc_quam_state-2025.6.5/PKG-INFO +163 -0
- cqc_quam_state-2025.6.5/README.md +146 -0
- cqc_quam_state-2025.6.5/cqc_quam_state.egg-info/PKG-INFO +163 -0
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/pyproject.toml +1 -1
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/quam_state/state.json +14 -14
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/quam_state/wiring.json +14 -14
- cqc_quam_state-2025.6.4/PKG-INFO +0 -78
- cqc_quam_state-2025.6.4/README.md +0 -61
- cqc_quam_state-2025.6.4/cqc_quam_state.egg-info/PKG-INFO +0 -78
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/cqc_quam_state/__init__.py +0 -0
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/cqc_quam_state/cli.py +0 -0
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/cqc_quam_state/utils.py +0 -0
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/cqc_quam_state.egg-info/SOURCES.txt +0 -0
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/cqc_quam_state.egg-info/dependency_links.txt +0 -0
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/cqc_quam_state.egg-info/entry_points.txt +0 -0
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/cqc_quam_state.egg-info/requires.txt +0 -0
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/cqc_quam_state.egg-info/top_level.txt +0 -0
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/load-cqc-quam +0 -0
- {cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/setup.cfg +0 -0
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cqc-quam-state
|
|
3
|
+
Version: 2025.6.5
|
|
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.5
|
|
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.
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"octaves": {
|
|
3
3
|
"oct1": {
|
|
4
4
|
"name": "oct1",
|
|
5
|
-
"ip": "
|
|
5
|
+
"ip": "134.94.1.250",
|
|
6
6
|
"port": 11051,
|
|
7
|
-
"calibration_db_path": "/
|
|
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": "
|
|
55
|
+
"ip": "134.94.1.250",
|
|
56
56
|
"port": 11050,
|
|
57
|
-
"calibration_db_path": "/
|
|
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,
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
"__class__": "quam.components.pulses.DragCosinePulse"
|
|
223
223
|
}
|
|
224
224
|
},
|
|
225
|
-
"intermediate_frequency": -
|
|
225
|
+
"intermediate_frequency": -326411836.1520631,
|
|
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"
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
"anharmonicity": 215000000,
|
|
333
333
|
"freq_vs_flux_01_quad_term": -21271975454.450764,
|
|
334
334
|
"T1": 5.633926695167223e-05,
|
|
335
|
-
"T2ramsey": 2.
|
|
335
|
+
"T2ramsey": 2.5763527334235444e-06,
|
|
336
336
|
"phi0_current": 33.13161776022881,
|
|
337
337
|
"phi0_voltage": 0.6626323552045763,
|
|
338
338
|
"GEF_frequency_shift": -350000,
|
|
@@ -468,7 +468,7 @@
|
|
|
468
468
|
"__class__": "quam.components.pulses.DragCosinePulse"
|
|
469
469
|
}
|
|
470
470
|
},
|
|
471
|
-
"intermediate_frequency": -
|
|
471
|
+
"intermediate_frequency": -226664477.7025703,
|
|
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"
|
|
@@ -578,7 +578,7 @@
|
|
|
578
578
|
"anharmonicity": 216000000,
|
|
579
579
|
"freq_vs_flux_01_quad_term": -20970339507.567898,
|
|
580
580
|
"T1": 5.109741356272203e-05,
|
|
581
|
-
"T2ramsey":
|
|
581
|
+
"T2ramsey": 1.998338578456958e-06,
|
|
582
582
|
"phi0_current": 32.889895121907706,
|
|
583
583
|
"phi0_voltage": 0.6577979024381542,
|
|
584
584
|
"GEF_frequency_shift": -300000,
|
|
@@ -714,7 +714,7 @@
|
|
|
714
714
|
"__class__": "quam.components.pulses.DragCosinePulse"
|
|
715
715
|
}
|
|
716
716
|
},
|
|
717
|
-
"intermediate_frequency":
|
|
717
|
+
"intermediate_frequency": 361634026.3069853,
|
|
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"
|
|
@@ -824,7 +824,7 @@
|
|
|
824
824
|
"anharmonicity": 206500000,
|
|
825
825
|
"freq_vs_flux_01_quad_term": -23427264013.63086,
|
|
826
826
|
"T1": 4.589418554059009e-05,
|
|
827
|
-
"T2ramsey":
|
|
827
|
+
"T2ramsey": -6.096584265531435e-06,
|
|
828
828
|
"phi0_current": 37.24650662137818,
|
|
829
829
|
"phi0_voltage": 0.7449301324275637,
|
|
830
830
|
"GEF_frequency_shift": -350000,
|
|
@@ -960,7 +960,7 @@
|
|
|
960
960
|
"__class__": "quam.components.pulses.DragCosinePulse"
|
|
961
961
|
}
|
|
962
962
|
},
|
|
963
|
-
"intermediate_frequency": -
|
|
963
|
+
"intermediate_frequency": -210344132.22465676,
|
|
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"
|
|
@@ -1070,7 +1070,7 @@
|
|
|
1070
1070
|
"anharmonicity": 188500000,
|
|
1071
1071
|
"freq_vs_flux_01_quad_term": -25844077306.14595,
|
|
1072
1072
|
"T1": 3.432181658112503e-05,
|
|
1073
|
-
"T2ramsey":
|
|
1073
|
+
"T2ramsey": 5.5404076690568453e-05,
|
|
1074
1074
|
"phi0_current": 42.229720068471536,
|
|
1075
1075
|
"phi0_voltage": 0.8445944013694308,
|
|
1076
1076
|
"GEF_frequency_shift": -350000,
|
|
@@ -1206,7 +1206,7 @@
|
|
|
1206
1206
|
"__class__": "quam.components.pulses.DragCosinePulse"
|
|
1207
1207
|
}
|
|
1208
1208
|
},
|
|
1209
|
-
"intermediate_frequency":
|
|
1209
|
+
"intermediate_frequency": 190405969.81635022,
|
|
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"
|
|
@@ -1316,7 +1316,7 @@
|
|
|
1316
1316
|
"anharmonicity": 193000000,
|
|
1317
1317
|
"freq_vs_flux_01_quad_term": -19084791753.74047,
|
|
1318
1318
|
"T1": 4.106197470698975e-05,
|
|
1319
|
-
"T2ramsey": 1.
|
|
1319
|
+
"T2ramsey": 1.2551177169201568e-05,
|
|
1320
1320
|
"phi0_current": 42.185449982477124,
|
|
1321
1321
|
"phi0_voltage": 0.8437089996495425,
|
|
1322
1322
|
"GEF_frequency_shift": -100000,
|
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
+
"network": {
|
|
3
|
+
"cloud": false,
|
|
4
|
+
"host": "134.94.1.250",
|
|
5
|
+
"port": 10010,
|
|
6
|
+
"cluster_name": "JSC_Cluster",
|
|
7
|
+
"octave_ips": [
|
|
8
|
+
"134.94.1.250",
|
|
9
|
+
"134.94.1.250"
|
|
10
|
+
],
|
|
11
|
+
"octave_ports": [
|
|
12
|
+
11051,
|
|
13
|
+
11050
|
|
14
|
+
]
|
|
15
|
+
},
|
|
2
16
|
"wiring": {
|
|
3
17
|
"qubits": {
|
|
4
18
|
"q0": {
|
|
@@ -92,19 +106,5 @@
|
|
|
92
106
|
}
|
|
93
107
|
}
|
|
94
108
|
}
|
|
95
|
-
},
|
|
96
|
-
"network": {
|
|
97
|
-
"cloud": false,
|
|
98
|
-
"host": "127.0.0.1",
|
|
99
|
-
"port": 10010,
|
|
100
|
-
"cluster_name": "JSC_Cluster",
|
|
101
|
-
"octave_ips": [
|
|
102
|
-
"127.0.0.1",
|
|
103
|
-
"127.0.0.1"
|
|
104
|
-
],
|
|
105
|
-
"octave_ports": [
|
|
106
|
-
11051,
|
|
107
|
-
11050
|
|
108
|
-
]
|
|
109
109
|
}
|
|
110
110
|
}
|
cqc_quam_state-2025.6.4/PKG-INFO
DELETED
|
@@ -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
|
-
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/cqc_quam_state.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{cqc_quam_state-2025.6.4 → cqc_quam_state-2025.6.5}/cqc_quam_state.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|