QDMI v1.4.0-dev
Quantum Device Management Interface
Loading...
Searching...
No Matches
constants.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 - 2026 QDMI Maintainers
3 * All rights reserved.
4 *
5 * Licensed under the Apache License v2.0 with LLVM Exceptions (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://llvm.org/LICENSE.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 *
17 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
18 */
19
24
25#ifndef QDMI_CONSTANTS_H
26#define QDMI_CONSTANTS_H
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32// The following clang-tidy warnings cannot be addressed because this header is
33// used from both C and C++ code.
34// NOLINTBEGIN(performance-enum-size, modernize-use-using)
35
55
155
158
206
209
298
301
490
493
512
515
725
728
875
878
903
906
1089
1092
1199
1202
1238
1241
1242// NOLINTEND(performance-enum-size, modernize-use-using)
1243
1244#ifdef __cplusplus
1245} // extern "C"
1246#endif
1247
1248#endif // QDMI_CONSTANTS_H
QDMI_JOB_STATUS_T
Enum of the status a job can have.
Definition constants.h:884
@ QDMI_JOB_STATUS_CANCELED
The job was canceled, and the result is not available.
Definition constants.h:899
@ QDMI_JOB_STATUS_CREATED
The job was created and can be configured via QDMI_job_set_parameter.
Definition constants.h:889
@ QDMI_JOB_STATUS_SUBMITTED
The job was submitted.
Definition constants.h:891
@ QDMI_JOB_STATUS_QUEUED
The job was received, and is waiting to be executed.
Definition constants.h:893
@ QDMI_JOB_STATUS_FAILED
One or more programs failed, or another error occurred in the lifecycle.
Definition constants.h:901
@ QDMI_JOB_STATUS_RUNNING
The job is running, and the result is not yet available.
Definition constants.h:895
@ QDMI_JOB_STATUS_DONE
The job is done, and the result can be retrieved.
Definition constants.h:897
enum QDMI_DEVICE_STATUS_T QDMI_Device_Status
Device status type.
Definition constants.h:514
enum QDMI_JOB_STATUS_T QDMI_Job_Status
Job status type.
Definition constants.h:905
QDMI_PROGRAM_FORMAT_T
Enum of formats that can be submitted to the device.
Definition constants.h:910
@ QDMI_PROGRAM_FORMAT_BATCHJOB
QDMI_Job*/QDMI_Device_Job* (QDMI_Job list / QDMI_Device_Job list) A list of jobs within a batch job.
Definition constants.h:1063
@ QDMI_PROGRAM_FORMAT_CALIBRATION
void* A calibration program.
Definition constants.h:1027
@ QDMI_PROGRAM_FORMAT_CUSTOM3
Definition constants.h:1083
@ QDMI_PROGRAM_FORMAT_QIRBASESTRING
char* (string) A text-based QIR program complying to the QIR base profile.
Definition constants.h:988
@ QDMI_PROGRAM_FORMAT_QASM3
char* (string) An OpenQASM 3 program.
Definition constants.h:958
@ QDMI_PROGRAM_FORMAT_CUSTOM4
Definition constants.h:1085
@ QDMI_PROGRAM_FORMAT_QPY
void* A QPY program.
Definition constants.h:1036
@ QDMI_PROGRAM_FORMAT_QIRBASEMODULE
void* A QIR binary complying to the QIR base profile.
Definition constants.h:999
@ QDMI_PROGRAM_FORMAT_CUSTOM2
Definition constants.h:1081
@ QDMI_PROGRAM_FORMAT_CUSTOM5
Definition constants.h:1087
@ QDMI_PROGRAM_FORMAT_QIRADAPTIVESTRING
char* (string) A text-based QIR program complying to the QIR adaptive profile.
Definition constants.h:1010
@ QDMI_PROGRAM_FORMAT_QIRADAPTIVEMODULE
void* A QIR binary complying to the QIR adaptive profile.
Definition constants.h:1020
@ QDMI_PROGRAM_FORMAT_IQMJSON
char* (string) A program in the IQM data transfer format.
Definition constants.h:1044
@ QDMI_PROGRAM_FORMAT_CUSTOM1
This enum value is reserved for a custom program format.
Definition constants.h:1079
@ QDMI_PROGRAM_FORMAT_MAX
The maximum value of the enum.
Definition constants.h:1072
@ QDMI_PROGRAM_FORMAT_QASM2
char* (string) An OpenQASM 2.0 program.
Definition constants.h:936
QDMI_DEVICE_JOB_PARAMETER_T
Enum of the device job parameters that can be set via QDMI_device_job_set_parameter.
Definition constants.h:165
@ QDMI_DEVICE_JOB_PARAMETER_SHOTSNUM
size_t The number of shots to execute for a quantum circuit job.
Definition constants.h:180
@ QDMI_DEVICE_JOB_PARAMETER_MAX
The maximum value of the enum.
Definition constants.h:189
@ QDMI_DEVICE_JOB_PARAMETER_CUSTOM1
This enum value is reserved for a custom parameter.
Definition constants.h:196
@ QDMI_DEVICE_JOB_PARAMETER_PROGRAMFORMAT
QDMI_Program_Format The format of the program to be executed.
Definition constants.h:175
@ QDMI_DEVICE_JOB_PARAMETER_CUSTOM4
Definition constants.h:202
@ QDMI_DEVICE_JOB_PARAMETER_CUSTOM2
Definition constants.h:198
@ QDMI_DEVICE_JOB_PARAMETER_CUSTOM5
Definition constants.h:204
@ QDMI_DEVICE_JOB_PARAMETER_CUSTOM3
Definition constants.h:200
QDMI_STATUS
Status codes returned by the API.
Definition constants.h:39
@ QDMI_ERROR_NOTFOUND
Element not found.
Definition constants.h:46
@ QDMI_ERROR_OUTOFMEM
Out of memory.
Definition constants.h:43
@ QDMI_ERROR_NOTSUPPORTED
Definition constants.h:50
@ QDMI_WARN_GENERAL
A general warning.
Definition constants.h:40
@ QDMI_ERROR_INVALIDARGUMENT
Invalid argument.
Definition constants.h:48
@ QDMI_ERROR_FATAL
A fatal error.
Definition constants.h:42
@ QDMI_SUCCESS
The operation was successful.
Definition constants.h:41
@ QDMI_ERROR_BADSTATE
Resource is in the wrong state for the operation.
Definition constants.h:52
@ QDMI_ERROR_OUTOFRANGE
Out of range.
Definition constants.h:47
@ QDMI_ERROR_NOTIMPLEMENTED
Not implemented.
Definition constants.h:44
@ QDMI_ERROR_PERMISSIONDENIED
Permission denied.
Definition constants.h:49
@ QDMI_ERROR_TIMEOUT
Operation timed out.
Definition constants.h:53
@ QDMI_ERROR_LIBNOTFOUND
Library not found.
Definition constants.h:45
enum QDMI_PROGRAM_FORMAT_T QDMI_Program_Format
Program format type.
Definition constants.h:1091
QDMI_DEVICE_PULSE_SUPPORT_LEVEL_T
Enum to indicate the level of pulse support a device has.
Definition constants.h:1206
@ QDMI_DEVICE_PULSE_SUPPORT_LEVEL_CHANNEL
The device supports pulse-level control at an abstraction level of QDMI_Pulse_Channel.
Definition constants.h:1229
@ QDMI_DEVICE_PULSE_SUPPORT_LEVEL_NONE
The device does not support pulse-level control.
Definition constants.h:1208
@ QDMI_DEVICE_PULSE_SUPPORT_LEVEL_SITEANDCHANNEL
The device supports pulse-level control at an abstraction level of QDMI_Site and QDMI_Pulse_Channel.
Definition constants.h:1236
@ QDMI_DEVICE_PULSE_SUPPORT_LEVEL_SITE
The device supports pulse-level control at an abstraction level of QDMI_Site.
Definition constants.h:1219
enum QDMI_JOB_RESULT_T QDMI_Job_Result
Job result type.
Definition constants.h:1201
enum QDMI_DEVICE_JOB_PARAMETER_T QDMI_Device_Job_Parameter
Device job parameter type.
Definition constants.h:208
enum QDMI_SITE_PROPERTY_T QDMI_Site_Property
Site property type.
Definition constants.h:727
QDMI_SITE_PROPERTY_T
Definition constants.h:520
@ QDMI_SITE_PROPERTY_INDEX
size_t The unique index (or ID) to identify the site in a program.
Definition constants.h:532
@ QDMI_SITE_PROPERTY_XCOORDINATE
int64_t The raw, unscaled X-coordinate of the site.
Definition constants.h:579
@ QDMI_SITE_PROPERTY_ZEXTENT
uint64_t The raw, unscaled extent of a zone along the Z-axis.
Definition constants.h:684
@ QDMI_SITE_PROPERTY_CUSTOM1
This enum value is reserved for a custom property.
Definition constants.h:715
@ QDMI_SITE_PROPERTY_CUSTOM4
Definition constants.h:721
@ QDMI_SITE_PROPERTY_XEXTENT
uint64_t The raw, unscaled extent of a zone along the X-axis.
Definition constants.h:652
@ QDMI_SITE_PROPERTY_CUSTOM2
Definition constants.h:717
@ QDMI_SITE_PROPERTY_CUSTOM3
Definition constants.h:719
@ QDMI_SITE_PROPERTY_T1
uint64_t The raw, unscaled T1 time of a site.
Definition constants.h:543
@ QDMI_SITE_PROPERTY_ISZONE
bool Whether the site is a zone.
Definition constants.h:636
@ QDMI_SITE_PROPERTY_T2
uint64_t The raw, unscaled T2 time of a site.
Definition constants.h:554
@ QDMI_SITE_PROPERTY_YEXTENT
uint64_t The raw, unscaled extent of a zone along the Y-axis.
Definition constants.h:668
@ QDMI_SITE_PROPERTY_MODULEINDEX
uint64_t an unsigned integer that uniquely identifies the module.
Definition constants.h:690
@ QDMI_SITE_PROPERTY_SUBMODULEINDEX
uint64_t an unsigned integer uniquely identifying the submodule within a module.
Definition constants.h:699
@ QDMI_SITE_PROPERTY_YCOORDINATE
int64_t The raw, unscaled Y-coordinate of the site.
Definition constants.h:599
@ QDMI_SITE_PROPERTY_ZCOORDINATE
int64_t The raw, unscaled Z-coordinate of the site.
Definition constants.h:619
@ QDMI_SITE_PROPERTY_NAME
Definition constants.h:559
@ QDMI_SITE_PROPERTY_MAX
The maximum value of the enum.
Definition constants.h:708
@ QDMI_SITE_PROPERTY_CUSTOM5
Definition constants.h:723
QDMI_DEVICE_JOB_PROPERTY_T
Enum of the device job properties that can be queried via QDMI_device_job_query_property as part of t...
Definition constants.h:217
@ QDMI_DEVICE_JOB_PROPERTY_CUSTOM5
Definition constants.h:296
@ QDMI_DEVICE_JOB_PROPERTY_PROGRAM
void* The program to be executed.
Definition constants.h:244
@ QDMI_DEVICE_JOB_PROPERTY_CUSTOM1
This enum value is reserved for a custom parameter.
Definition constants.h:288
@ QDMI_DEVICE_JOB_PROPERTY_QUEUEPOSITION
size_t The current number of jobs ahead of this job in its queue.
Definition constants.h:265
@ QDMI_DEVICE_JOB_PROPERTY_PROGRAMFORMAT
QDMI_Program_Format The format of the program to be executed.
Definition constants.h:236
@ QDMI_DEVICE_JOB_PROPERTY_CUSTOM4
Definition constants.h:294
@ QDMI_DEVICE_JOB_PROPERTY_PROGRAMSNUM
size_t The number of programs in the job.
Definition constants.h:272
@ QDMI_DEVICE_JOB_PROPERTY_CUSTOM3
Definition constants.h:292
@ QDMI_DEVICE_JOB_PROPERTY_SHOTSNUM
size_t The number of shots to execute for a quantum circuit job.
Definition constants.h:250
@ QDMI_DEVICE_JOB_PROPERTY_MAX
The maximum value of the enum.
Definition constants.h:281
@ QDMI_DEVICE_JOB_PROPERTY_CUSTOM2
Definition constants.h:290
@ QDMI_DEVICE_JOB_PROPERTY_ID
char* (string) The job's ID.
Definition constants.h:228
enum QDMI_DEVICE_JOB_PROPERTY_T QDMI_Device_Job_Property
Device job property type.
Definition constants.h:300
QDMI_DEVICE_SESSION_PARAMETER_T
Enum of the device session parameters that can be set via QDMI_device_session_set_parameter.
Definition constants.h:62
@ QDMI_DEVICE_SESSION_PARAMETER_MAX
The maximum value of the enum.
Definition constants.h:138
@ QDMI_DEVICE_SESSION_PARAMETER_PASSWORD
char* (string) The password to use for the session.
Definition constants.h:117
@ QDMI_DEVICE_SESSION_PARAMETER_CUSTOM4
Definition constants.h:151
@ QDMI_DEVICE_SESSION_PARAMETER_TOKEN
char* (string) A token to be used in the session initialization for authenticating with the device.
Definition constants.h:80
@ QDMI_DEVICE_SESSION_PARAMETER_CUSTOM5
Definition constants.h:153
@ QDMI_DEVICE_SESSION_PARAMETER_USERNAME
char* (string) The username to use for the device session.
Definition constants.h:110
@ QDMI_DEVICE_SESSION_PARAMETER_CUSTOM2
Definition constants.h:147
@ QDMI_DEVICE_SESSION_PARAMETER_CUSTOM3
Definition constants.h:149
@ QDMI_DEVICE_SESSION_PARAMETER_BASEURL
char* (string) The baseURL or API endpoint to be used for accessing the device within the session.
Definition constants.h:71
@ QDMI_DEVICE_SESSION_PARAMETER_CUSTOM1
This enum value is reserved for a custom parameter.
Definition constants.h:145
@ QDMI_DEVICE_SESSION_PARAMETER_CHILDDEVICE
QDMI_Child_Device The child device to establish the session with.
Definition constants.h:129
@ QDMI_DEVICE_SESSION_PARAMETER_AUTHURL
char* (string) The URL to an authentication server used as part of the authentication procedure.
Definition constants.h:103
@ QDMI_DEVICE_SESSION_PARAMETER_AUTHFILE
char* (string) A file path to a file containing authentication information.
Definition constants.h:89
QDMI_DEVICE_STATUS_T
Enum of different status the device can be in.
Definition constants.h:495
@ QDMI_DEVICE_STATUS_IDLE
The device is idle.
Definition constants.h:497
@ QDMI_DEVICE_STATUS_OFFLINE
The device is offline.
Definition constants.h:496
@ QDMI_DEVICE_STATUS_ERROR
The device is in an error state.
Definition constants.h:499
@ QDMI_DEVICE_STATUS_MAX
The maximum value of the enum.
Definition constants.h:510
@ QDMI_DEVICE_STATUS_CALIBRATION
The device is in calibration.
Definition constants.h:501
@ QDMI_DEVICE_STATUS_MAINTENANCE
The device is in maintenance.
Definition constants.h:500
@ QDMI_DEVICE_STATUS_BUSY
The device is busy.
Definition constants.h:498
QDMI_JOB_RESULT_T
Enum of the formats the results can be returned in.
Definition constants.h:1098
@ QDMI_JOB_RESULT_PROBABILITIES_DENSE
double* (double list) The probabilities of the result.
Definition constants.h:1138
@ QDMI_JOB_RESULT_MAX
The maximum value of the enum.
Definition constants.h:1182
@ QDMI_JOB_RESULT_STATEVECTOR_DENSE
double* (double list) The state vector of the result.
Definition constants.h:1130
@ QDMI_JOB_RESULT_HIST_KEYS
char* (string) The keys for the histogram of the results.
Definition constants.h:1115
@ QDMI_JOB_RESULT_PROBABILITIES_SPARSE_VALUES
double* (double list) The values for the sparse probabilities of the result.
Definition constants.h:1173
@ QDMI_JOB_RESULT_HIST_VALUES
size_t* (size_t list) The values for the histogram of the results.
Definition constants.h:1121
@ QDMI_JOB_RESULT_STATEVECTOR_SPARSE_VALUES
double* (double list) The values for the sparse state vector of the result.
Definition constants.h:1155
@ QDMI_JOB_RESULT_CUSTOM1
This enum value is reserved for a custom result.
Definition constants.h:1189
@ QDMI_JOB_RESULT_CUSTOM5
Definition constants.h:1197
@ QDMI_JOB_RESULT_CUSTOM2
Definition constants.h:1191
@ QDMI_JOB_RESULT_STATEVECTOR_SPARSE_KEYS
char* (string) The keys for the sparse state vector of the result.
Definition constants.h:1146
@ QDMI_JOB_RESULT_SHOTS
char* (string) The results of the individual shots as a comma-separated list, for example,...
Definition constants.h:1104
@ QDMI_JOB_RESULT_CUSTOM4
Definition constants.h:1195
@ QDMI_JOB_RESULT_CUSTOM3
Definition constants.h:1193
@ QDMI_JOB_RESULT_PROBABILITIES_SPARSE_KEYS
char* (string) The keys for the sparse probabilities of the result.
Definition constants.h:1164
QDMI_OPERATION_PROPERTY_T
Definition constants.h:734
@ QDMI_OPERATION_PROPERTY_CUSTOM2
Definition constants.h:867
@ QDMI_OPERATION_PROPERTY_MAX
The maximum value of the enum.
Definition constants.h:858
@ QDMI_OPERATION_PROPERTY_BLOCKINGRADIUS
uint64_t The raw, unscaled blocking radius of the operation.
Definition constants.h:791
@ QDMI_OPERATION_PROPERTY_ISZONED
bool Whether the operation is a zoned (global) operation.
Definition constants.h:818
@ QDMI_OPERATION_PROPERTY_QUBITSNUM
size_t The number of qubits involved in the operation.
Definition constants.h:738
@ QDMI_OPERATION_PROPERTY_NAME
char* (string) The string identifier of the operation.
Definition constants.h:736
@ QDMI_OPERATION_PROPERTY_PARAMETERSNUM
size_t The number of floating point parameters the operation takes.
Definition constants.h:740
@ QDMI_OPERATION_PROPERTY_INTERACTIONRADIUS
uint64_t The raw, unscaled interaction radius of the operation.
Definition constants.h:772
@ QDMI_OPERATION_PROPERTY_CUSTOM1
This enum value is reserved for a custom property.
Definition constants.h:865
@ QDMI_OPERATION_PROPERTY_CUSTOM3
Definition constants.h:869
@ QDMI_OPERATION_PROPERTY_DURATION
uint64_t The raw, unscaled duration of an operation.
Definition constants.h:751
@ QDMI_OPERATION_PROPERTY_MEANSHUTTLINGSPEED
uint64_t The raw, unscaled mean shuttling speed of an operation.
Definition constants.h:849
@ QDMI_OPERATION_PROPERTY_CUSTOM5
Definition constants.h:873
@ QDMI_OPERATION_PROPERTY_IDLINGFIDELITY
double Fidelity of qubits idling during a global operation.
Definition constants.h:804
@ QDMI_OPERATION_PROPERTY_FIDELITY
double The fidelity of an operation.
Definition constants.h:753
@ QDMI_OPERATION_PROPERTY_SITES
QDMI_Site* (list) The sites to which the operation is applicable.
Definition constants.h:831
@ QDMI_OPERATION_PROPERTY_CUSTOM4
Definition constants.h:871
enum QDMI_DEVICE_SESSION_PARAMETER_T QDMI_Device_Session_Parameter
Device session parameter type.
Definition constants.h:157
enum QDMI_OPERATION_PROPERTY_T QDMI_Operation_Property
Operation property type.
Definition constants.h:877
QDMI_DEVICE_PROPERTY_T
Definition constants.h:309
@ QDMI_DEVICE_PROPERTY_QUEUELENGTH
size_t The current number of jobs waiting to access the device.
Definition constants.h:464
@ QDMI_DEVICE_PROPERTY_MINATOMDISTANCE
uint64_t The raw, unscaled minimum required distance between qubits during quantum computation.
Definition constants.h:427
@ QDMI_DEVICE_PROPERTY_NAME
char* (string) The name of the device.
Definition constants.h:311
@ QDMI_DEVICE_PROPERTY_CHILDDEVICES
QDMI_Child_Device* (QDMI_Child_Device list) A list of device handles corresponding to the device's ch...
Definition constants.h:449
@ QDMI_DEVICE_PROPERTY_LENGTHSCALEFACTOR
double A scale factor for all length values.
Definition constants.h:389
@ QDMI_DEVICE_PROPERTY_CUSTOM3
Definition constants.h:484
@ QDMI_DEVICE_PROPERTY_CUSTOM2
Definition constants.h:482
@ QDMI_DEVICE_PROPERTY_LENGTHUNIT
char* (string) The length unit reported by the device.
Definition constants.h:379
@ QDMI_DEVICE_PROPERTY_NEEDSCALIBRATION
size_t Whether the device needs calibration.
Definition constants.h:362
@ QDMI_DEVICE_PROPERTY_STATUS
QDMI_Device_Status The status of the device.
Definition constants.h:315
@ QDMI_DEVICE_PROPERTY_VERSION
char* (string) The version of the device.
Definition constants.h:313
@ QDMI_DEVICE_PROPERTY_LIBRARYVERSION
char* (string) The implemented version of QDMI.
Definition constants.h:317
@ QDMI_DEVICE_PROPERTY_PULSESUPPORT
QDMI_Device_Pulse_Support_Level Whether the device supports pulse-level control.
Definition constants.h:370
@ QDMI_DEVICE_PROPERTY_SUPPORTEDPROGRAMFORMATS
QDMI_Program_Format* (QDMI_Program_Format list) The program formats supported by the device.
Definition constants.h:435
@ QDMI_DEVICE_PROPERTY_QUBITSNUM
size_t The number of qubits in the device.
Definition constants.h:319
@ QDMI_DEVICE_PROPERTY_COUPLINGMAP
QDMI_Site* (QDMI_Site list) The coupling map of the device.
Definition constants.h:350
@ QDMI_DEVICE_PROPERTY_DURATIONSCALEFACTOR
double A scale factor for all duration values.
Definition constants.h:408
@ QDMI_DEVICE_PROPERTY_OPERATIONS
QDMI_Operation* (QDMI_Operation list) The operations supported by the device.
Definition constants.h:338
@ QDMI_DEVICE_PROPERTY_DURATIONUNIT
char* (string) The duration unit reported by the device.
Definition constants.h:398
@ QDMI_DEVICE_PROPERTY_CUSTOM1
This enum value is reserved for a custom property.
Definition constants.h:480
@ QDMI_DEVICE_PROPERTY_CUSTOM4
Definition constants.h:486
@ QDMI_DEVICE_PROPERTY_CUSTOM5
Definition constants.h:488
@ QDMI_DEVICE_PROPERTY_SITES
QDMI_Site* (QDMI_Site list) The sites of the device.
Definition constants.h:331
@ QDMI_DEVICE_PROPERTY_MAX
The maximum value of the enum.
Definition constants.h:473
enum QDMI_DEVICE_PULSE_SUPPORT_LEVEL_T QDMI_Device_Pulse_Support_Level
Pulse support level type.
Definition constants.h:1240
enum QDMI_DEVICE_PROPERTY_T QDMI_Device_Property
Device property type.
Definition constants.h:492