백엔드
백엔드 목록
서비스 인스턴스가 액세스할 수 있는 모든 백엔드의 목록을 반환합니다.
권한 부여
이 메소드를 호출하려면 다음 조치를 포함하는 하나 이상의 IAM 액세스 역할이 지정되어야 합니다. 다음으로 이동하여 액세스 권한을 확인할 수 있습니다. Users > User > Access
quantum-computing.device.read
감사
이 메소드를 호출하면 다음과 같은 감사 이벤트가 생성됩니다.
quantum-computing.device.read
입력
이름, 유형 | 설명 |
|---|---|
fields string | 응답에 반환할 필드의 쉼표로 구분된 목록입니다. 처음에는 가능한 값: wait_time_seconds기본값: |
인스턴스가 eu-de 리전에 있는 경우, 대신 URL 를 사용하세요: https://eu-de.quantum.cloud.ibm.com/api/v1/backends
curl -X GET \
'https://quantum.cloud.ibm.com/api/v1/backends' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer YOUR-TOKEN' \
-H 'Service-CRN: YOUR-SERVICE-CRN' \
-H 'IBM-API-Version: 2024-01-01' 인스턴스가 eu-de 리전에 있는 경우, 대신 URL 를 사용하세요: https://eu-de.quantum.cloud.ibm.com/api/v1/backends
import requests
response = requests.request(
"GET",
"https://quantum.cloud.ibm.com/api/v1/backends",
headers={
"Accept": "application/json",
"IBM-API-Version": "2024-01-01",
"Authorization": "Bearer YOUR-TOKEN",
"Service-CRN": "YOUR-SERVICE-CRN"
},
)
print(response.json())출력
상태 코드 | 설명 |
|---|---|
| 200 | 확인 |
{
"devices": [
{
"name": "ibmq_armonk",
"status": {
"name": "offline"
},
"is_simulator": false,
"qubits": 20,
"clops": null,
"processor_type": {
"family": null,
"revision": null,
"segment": null
},
"queue_length": 0
},
{
"name": "ibmq_nazca",
"status": {
"name": "paused",
"reason": "Maintenance"
},
"is_simulator": false,
"qubits": 16,
"clops": {
"type": "hardware",
"value": 80
},
"processor_type": {
"family": "Quantum",
"revision": "RevB",
"segment": "Segment2"
},
"queue_length": 20
}
]
}{
"title": "BackendsResponse",
"type": "object",
"description": "백엔드 응답",
"properties": {
"devices": {
"minItems": 1,
"type": "array",
"description": "상태와 함께 백엔드 목록",
"items": {
"type": "object",
"required": [
"name",
"status",
"queue_length"
],
"properties": {
"name": {
"type": "string",
"description": "백엔드 장치의 이름",
"minLength": 1,
"maxLength": 255
},
"status": {
"type": "object",
"description": "백엔드 장치의 상태",
"properties": {
"name": {
"type": "string",
"description": "백엔드 장치의 상태 이름",
"enum": [
"online",
"paused",
"offline"
]
},
"reason": {
"type": "string",
"description": "상태의 선택적 이유"
}
},
"required": [
"name"
]
},
"is_simulator": {
"type": "boolean",
"deprecated": true,
"description": "사용 중단 예정: 모든 장치가 실제 양자 하드웨어입니다. 이 필드는 향후 릴리스에서 제거될 예정입니다."
},
"qubits": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647,
"nullable": true,
"description": "이 장치에 포함된 프로그래밍 가능한 큐비트의 수"
},
"physical_qubits": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647,
"description": "물리적 큐비트 수 (프로그래밍 가능 큐비트, 리셋 큐비트 및 커플러를 합한 수)"
},
"clops": {
"type": "object",
"nullable": true,
"description": "CLOPS의 세부 정보",
"properties": {
"type": {
"type": "string",
"enum": [
"virtual",
"hardware"
]
},
"value": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647
}
},
"required": [
"type",
"value"
]
},
"mcps": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647,
"description": "초당 최대 회로 수 (MCPS)"
},
"processor_type": {
"type": "object",
"nullable": true,
"description": "프로세서 유형에 대한 세부 정보",
"properties": {
"family": {
"type": "string",
"nullable": true,
"description": "프로세서 제품군"
},
"revision": {
"type": "string",
"nullable": true,
"description": "프로세서 개정"
},
"segment": {
"type": "string",
"nullable": true,
"description": "프로세서 세그먼트"
}
}
},
"queue_length": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647,
"description": "실행 대기 중인 작업 수"
},
"performance_metrics": {
"type": "object",
"properties": {
"two_q_error_best": {
"description": "2Q 오류(최상)",
"allOf": [
{
"type": "object",
"properties": {
"value": {
"type": "number",
"example": 0.1
},
"gate": {
"type": "string",
"example": "cx"
},
"unit": {
"type": "string",
"example": ""
},
"qubits": {
"type": "array",
"example": [
1,
2
],
"items": {
"type": "number"
}
}
},
"required": [
"value",
"gate",
"qubits"
]
}
]
},
"two_q_error_layered": {
"description": "2Q 오류(계층형)",
"allOf": [
{
"type": "object",
"properties": {
"value": {
"type": "number",
"example": 0.1
},
"unit": {
"type": "string",
"example": ""
}
},
"required": [
"value"
]
}
]
},
"two_q_error_median": {
"description": "2Q 오류(중앙값)",
"allOf": [
{
"type": "object",
"properties": {
"value": {
"type": "number",
"example": 0.14123123
},
"unit": {
"type": "string",
"example": ""
}
},
"required": [
"value"
]
}
]
},
"readout_error_median": {
"description": "판독 오류(중앙값)",
"allOf": [
{
"type": "object",
"properties": {
"value": {
"type": "number",
"example": 0.3442341
},
"unit": {
"type": "string",
"example": ""
}
},
"required": [
"value"
]
}
]
}
}
},
"wait_time_seconds": {
"type": "object",
"nullable": true,
"description": "디바이스의 작업 대기 시간(초)",
"properties": {
"average": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647,
"description": "작업 실행 시작 전 평균 대기 시간(초)"
},
"p50": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647,
"description": "P50 작업 실행 시작 전 대기 시간(초)"
},
"p95": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647,
"description": "P95 작업 실행 시작 전 대기 시간(초)"
}
},
"required": [
"average",
"p50",
"p95"
]
}
}
}
}
},
"required": [
"devices"
]
}백엔드 구성 가져오기
지정된 백엔드에 대한 구성을 반환합니다.
권한 부여
이 메소드를 호출하려면 다음 조치를 포함하는 하나 이상의 IAM 액세스 역할이 지정되어야 합니다. 다음으로 이동하여 액세스 권한을 확인할 수 있습니다. Users > User > Access
quantum-computing.device.read
감사
이 메소드를 호출하면 다음과 같은 감사 이벤트가 생성됩니다.
quantum-computing.device.read
입력
이름, 유형 | 설명 |
|---|---|
id 필수 string | 사용 가능한 백엔드의 식별자 |
이름, 유형 | 설명 |
|---|---|
calibration_id string | 지정된 캘리브레이션 ID와 관련된 구성을 반환합니다. |
인스턴스가 eu-de 리전에 있는 경우, 대신 URL 를 사용하세요: https://eu-de.quantum.cloud.ibm.com/api/v1/backends/{id}/configuration
curl -X GET \
'https://quantum.cloud.ibm.com/api/v1/backends/{id}/configuration' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer YOUR-TOKEN' \
-H 'Service-CRN: YOUR-SERVICE-CRN' \
-H 'IBM-API-Version: 2024-01-01' 인스턴스가 eu-de 리전에 있는 경우, 대신 URL 를 사용하세요: https://eu-de.quantum.cloud.ibm.com/api/v1/backends/{id}/configuration
import requests
response = requests.request(
"GET",
"https://quantum.cloud.ibm.com/api/v1/backends/{id}/configuration",
headers={
"Accept": "application/json",
"IBM-API-Version": "2024-01-01",
"Authorization": "Bearer YOUR-TOKEN",
"Service-CRN": "YOUR-SERVICE-CRN"
},
)
print(response.json())출력
상태 코드 | 설명 |
|---|---|
| 200 | 확인 |
{
"acquisition_latency": [],
"allow_q_object": true,
"backend_name": "test_rome",
"backend_version": "1.3.24",
"basis_gates": [
"cx",
"id",
"rz",
"sx",
"x"
],
"channels": {
"acquire0": {
"operates": {
"qubits": [
0
]
},
"purpose": "acquire",
"type": "acquire"
},
"acquire1": {
"operates": {
"qubits": [
1
]
},
"purpose": "acquire",
"type": "acquire"
},
"acquire2": {
"operates": {
"qubits": [
2
]
},
"purpose": "acquire",
"type": "acquire"
},
"acquire3": {
"operates": {
"qubits": [
3
]
},
"purpose": "acquire",
"type": "acquire"
},
"acquire4": {
"operates": {
"qubits": [
4
]
},
"purpose": "acquire",
"type": "acquire"
},
"d0": {
"operates": {
"qubits": [
0
]
},
"purpose": "drive",
"type": "drive"
},
"d1": {
"operates": {
"qubits": [
1
]
},
"purpose": "drive",
"type": "drive"
},
"d2": {
"operates": {
"qubits": [
2
]
},
"purpose": "drive",
"type": "drive"
},
"d3": {
"operates": {
"qubits": [
3
]
},
"purpose": "drive",
"type": "drive"
},
"d4": {
"operates": {
"qubits": [
4
]
},
"purpose": "drive",
"type": "drive"
},
"m0": {
"operates": {
"qubits": [
0
]
},
"purpose": "measure",
"type": "measure"
},
"m1": {
"operates": {
"qubits": [
1
]
},
"purpose": "measure",
"type": "measure"
},
"m2": {
"operates": {
"qubits": [
2
]
},
"purpose": "measure",
"type": "measure"
},
"m3": {
"operates": {
"qubits": [
3
]
},
"purpose": "measure",
"type": "measure"
},
"m4": {
"operates": {
"qubits": [
4
]
},
"purpose": "measure",
"type": "measure"
},
"u0": {
"operates": {
"qubits": [
0,
1
]
},
"purpose": "cross-resonance",
"type": "control"
},
"u1": {
"operates": {
"qubits": [
1,
0
]
},
"purpose": "cross-resonance",
"type": "control"
},
"u2": {
"operates": {
"qubits": [
1,
2
]
},
"purpose": "cross-resonance",
"type": "control"
},
"u3": {
"operates": {
"qubits": [
2,
1
]
},
"purpose": "cross-resonance",
"type": "control"
},
"u4": {
"operates": {
"qubits": [
2,
3
]
},
"purpose": "cross-resonance",
"type": "control"
},
"u5": {
"operates": {
"qubits": [
3,
2
]
},
"purpose": "cross-resonance",
"type": "control"
},
"u6": {
"operates": {
"qubits": [
3,
4
]
},
"purpose": "cross-resonance",
"type": "control"
},
"u7": {
"operates": {
"qubits": [
4,
3
]
},
"purpose": "cross-resonance",
"type": "control"
}
},
"conditional": false,
"conditional_latency": [],
"coupling_map": [
[
0,
1
],
[
1,
0
],
[
1,
2
],
[
2,
1
],
[
2,
3
],
[
3,
2
],
[
3,
4
],
[
4,
3
]
],
"coords": [
[
1,
1
],
[
1,
2
],
[
2,
1
],
[
2,
2
],
[
3,
1
]
],
"credits_required": true,
"default_rep_delay": 250,
"description": "5 큐비트 장치",
"discriminators": [
"quadratic_discriminator",
"linear_discriminator",
"hw_qmfk"
],
"dt": 0.2222222222222222,
"dtm": 0.2222222222222222,
"dynamic_reprate_enabled": true,
"gates": [
{
"coupling_map": [
[
0
],
[
1
],
[
2
],
[
3
],
[
4
]
],
"name": "id",
"parameters": [],
"qasm_def": "gate id q { U(0, 0, 0) q; }"
},
{
"coupling_map": [
[
0
],
[
1
],
[
2
],
[
3
],
[
4
]
],
"name": "rz",
"parameters": [
"theta"
],
"qasm_def": "gate rz(theta) q { U(0, 0, theta) q; }"
},
{
"coupling_map": [
[
0
],
[
1
],
[
2
],
[
3
],
[
4
]
],
"name": "sx",
"parameters": [],
"qasm_def": "gate sx q { U(pi/2, 3*pi/2, pi/2) q; }"
},
{
"coupling_map": [
[
0
],
[
1
],
[
2
],
[
3
],
[
4
]
],
"name": "x",
"parameters": [],
"qasm_def": "gate x q { U(pi, 0, pi) q; }"
},
{
"coupling_map": [
[
0,
1
],
[
1,
0
],
[
1,
2
],
[
2,
1
],
[
2,
3
],
[
3,
2
],
[
3,
4
],
[
4,
3
]
],
"name": "cx",
"parameters": [],
"qasm_def": "gate cx q0, q1 { CX q0, q1; }"
},
{
"coupling_map": [],
"name": "reset",
"parameters": null,
"qasm_def": null
}
],
"hamiltonian": {
"description": "큐비트는 더핑 오실레이터로 모델링됩니다. 이 경우 시스템은 더 높은 에너지 상태, 즉 |0>와 |1>뿐만 아니라 더 높은 에너지 상태도 포함합니다. 폴리 연산자는 다음과 같은 변환 세트를 통해 일반화됩니다:\n\n$(\\mathbb{I}-\\sigma_{i}^z)/2 \\rightarrow O_i \\equiv b^\\dagger_{i} b_{i}$,\n\n$\\sigma_{+} \\rightarrow b^\\dagger$,\n\n$\\sigma_{-} \\rightarrow b$,\n\n$\\sigma_{i}^X \\rightarrow b^\\dagger_{i} + b_{i}$.\n\n큐비트는 공진기 버스를 통해 연결됩니다. 제공된 해밀턴은 공진기 버스의 영 여기 하위 공간에 투영되어 효과적인 큐비트-큐비트 플립플롭 상호 작용으로 이어집니다. 해밀턴의 큐비트 공명 주파수는 캐비티 드레싱 주파수로, 큐비트-큐비트 상호작용으로 인한 드레싱을 포함하는 백엔드 디폴트에 의해 반환되는 것과 정확히 일치하지 않습니다.\n\n수량은 각도 주파수로 반환되며 단위는 *2피피헤르츠입니다*.\n\n경고: 현재 모든 시스템 해밀턴 정보를 공개할 수 있는 것은 아니며, 누락된 값은 0으로 대체되었습니다.",
"h_latex": "\\begin{align} \\mathcal{H}/\\hbar = & \\sum_{i=0}^{4}\\left(\\frac{\\omega_{q,i}}{2}(\\mathbb{I}-\\sigma_i^{z})+\\frac{\\Delta_{i}}{2}(O_i^2-O_i)+\\Omega_{d,i}D_i(t)\\sigma_i^{X}\\right) \\\\ & + J_{0,1}(\\sigma_{0}^{+}\\sigma_{1}^{-}+\\sigma_{0}^{-}\\sigma_{1}^{+}) + J_{1,2}(\\sigma_{1}^{+}\\sigma_{2}^{-}+\\sigma_{1}^{-}\\sigma_{2}^{+}) + J_{2,3}(\\sigma_{2}^{+}\\sigma_{3}^{-}+\\sigma_{2}^{-}\\sigma_{3}^{+}) + J_{3,4}(\\sigma_{3}^{+}\\sigma_{4}^{-}+\\sigma_{3}^{-}\\sigma_{4}^{+}) \\\\ & + \\Omega_{d,0}(U_{0}^{(0,1)}(t))\\sigma_{0}^{X} + \\Omega_{d,1}(U_{1}^{(1,0)}(t)+U_{2}^{(1,2)}(t))\\sigma_{1}^{X} \\\\ & + \\Omega_{d,2}(U_{3}^{(2,1)}(t)+U_{4}^{(2,3)}(t))\\sigma_{2}^{X} + \\Omega_{d,3}(U_{6}^{(3,4)}(t)+U_{5}^{(3,2)}(t))\\sigma_{3}^{X} \\\\ & + \\Omega_{d,4}(U_{7}^{(4,3)}(t))\\sigma_{4}^{X} \\\\ \\end{align}",
"h_str": [
"_SUM[i,0,4,wq{i}/2*(I{i}-Z{i})]",
"_SUM[i,0,4,delta{i}/2*O{i}*O{i}]",
"_SUM[i,0,4,-delta{i}/2*O{i}]",
"_SUM[i,0,4,omegad{i}*X{i}||D{i}]",
"jq0q1*Sp0*Sm1",
"jq0q1*Sm0*Sp1",
"jq1q2*Sp1*Sm2",
"jq1q2*Sm1*Sp2",
"jq2q3*Sp2*Sm3",
"jq2q3*Sm2*Sp3",
"jq3q4*Sp3*Sm4",
"jq3q4*Sm3*Sp4",
"omegad1*X0||U0",
"omegad0*X1||U1",
"omegad2*X1||U2",
"omegad1*X2||U3",
"omegad3*X2||U4",
"omegad4*X3||U6",
"omegad2*X3||U5",
"omegad3*X4||U7"
],
"osc": {},
"qub": {
"0": 3,
"1": 3,
"2": 3,
"3": 3,
"4": 3
},
"vars": {
"delta0": -2.121376713496892,
"delta1": -2.0572320855686512,
"delta2": -2.1219857492779215,
"delta3": -2.091175183242651,
"delta4": -2.1322677360148967,
"jq0q1": 0.008401931549453526,
"jq1q2": 0.00827615700717255,
"jq2q3": 0.01043348816290951,
"jq3q4": 0.009434356217567021,
"omegad0": 1.1180899684563905,
"omegad1": 1.5965937469694844,
"omegad2": 0.9313930823895185,
"omegad3": 1.02359978967771,
"omegad4": 0.9199181427404678,
"wq0": 31.219269899115847,
"wq1": 29.97144547517013,
"wq2": 31.511197534723212,
"wq3": 33.04500189654535,
"wq4": 31.400533734888114
}
},
"local": false,
"max_experiments": 900,
"max_shots": 8192,
"meas_kernels": [
"hw_qmfk"
],
"meas_levels": [
1,
2
],
"meas_lo_range": [
[
6.923525326,
7.923525326
],
[
6.667956078,
7.667956078
],
[
6.816091357,
7.816091357
],
[
6.884056996,
7.884056996
],
[
6.747308081,
7.747308081
]
],
"meas_map": [
[
0,
1,
2,
3,
4
]
],
"measure_esp_enabled": false,
"memory": true,
"multi_meas_enabled": true,
"n_qubits": 5,
"n_registers": 1,
"n_uchannels": 8,
"online_date": "2020-03-23T04:00:00Z",
"open_pulse": true,
"parametric_pulses": [
"gaussian",
"gaussian_square",
"drag",
"constant"
],
"processor_type": {
"family": "Falcon",
"revision": 4,
"segment": "L"
},
"quantum_volume": 32,
"qubit_channel_mapping": [
[
"u0",
"d0",
"u1",
"m0"
],
[
"u1",
"m1",
"u0",
"u3",
"u2",
"d1"
],
[
"u5",
"u3",
"u2",
"m2",
"d2",
"u4"
],
[
"u5",
"u7",
"m3",
"u4",
"u6",
"d3"
],
[
"m4",
"u7",
"u6",
"d4"
]
],
"qubit_lo_range": [
[
4.468701124164304,
5.468701124164304
],
[
4.270103698982546,
5.270103698982546
],
[
4.5151628503963455,
5.5151628503963455
],
[
4.759275396316249,
5.759275396316249
],
[
4.497550159631257,
5.497550159631257
]
],
"real_qubits": false,
"rep_delay_range": [
0,
500
],
"rep_times": [
1000
],
"sample_name": "family: Falcon, revision: 4, segment: L",
"simulator": false,
"supported_instructions": [
"measure",
"u1",
"reset",
"rz",
"u3",
"x",
"acquire",
"u2",
"id",
"play",
"sx",
"shiftf",
"setf",
"delay",
"cx"
],
"u_channel_lo": [
[
{
"q": 1,
"scale": [
1,
0
]
}
],
[
{
"q": 0,
"scale": [
1,
0
]
}
],
[
{
"q": 2,
"scale": [
1,
0
]
}
],
[
{
"q": 1,
"scale": [
1,
0
]
}
],
[
{
"q": 3,
"scale": [
1,
0
]
}
],
[
{
"q": 2,
"scale": [
1,
0
]
}
],
[
{
"q": 4,
"scale": [
1,
0
]
}
],
[
{
"q": 3,
"scale": [
1,
0
]
}
]
],
"uchannels_enabled": true,
"url": "None"
}{
"title": "BackendsConfigurationResponse",
"type": "object",
"description": "백엔드 구성 응답",
"required": [
"backend_name",
"backend_version",
"basis_gates",
"conditional",
"coords",
"coupling_map",
"gates",
"local",
"memory",
"n_qubits",
"online_date",
"u_channel_lo"
],
"properties": {
"acquisition_latency": {
"description": "차원 n\\_쿼비트 x n\\_레지스터의 배열입니다. 큐비트 n의 측정 결과를 레지스터 슬롯 m에 기록하는 데 걸리는 지연 시간(dt 단위)입니다.",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "array"
},
"example": [
[
0,
1
],
[
1,
0
]
],
"type": "array"
},
"backend_name": {
"type": "string",
"description": "백엔드 이름",
"pattern": "^[a-zA-Z0-9_]*$",
"minLength": 1,
"maxLength": 64,
"example": "ibmq_eagle"
},
"backend_version": {
"type": "string",
"description": "형식의 백엔드 버전 X.X.X",
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$",
"minLength": 5,
"maxLength": 16,
"example": "1.6.0"
},
"basis_gates": {
"description": "백엔드의 베이시스 게이트 이름 목록",
"minItems": 1,
"maxItems": 64,
"example": [
"u1",
"cx",
"h"
],
"items": {
"type": "string"
},
"type": "array"
},
"clops": {
"description": "초당 회로 레이어 연산 횟수(CLOPS). QPU가 초당 실행할 수 있는 하드웨어 인식 100x100 회로의 레이어 수를 나타내는 지표.",
"allOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"example": "virtual",
"enum": [
"virtual",
"hardware"
]
},
"value": {
"oneOf": [
{
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647
},
{
"type": "string",
"pattern": "^.*$"
}
],
"example": 100
}
},
"required": [
"type",
"value"
]
}
]
},
"clops_h": {
"description": "하드웨어 회로 계층 초당 연산 횟수 (CLOPS\\_h). 하드웨어에서 QPU가 초당 실행할 수 있는 회로 레이어 수를 측정합니다.",
"oneOf": [
{
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647
},
{
"type": "string",
"pattern": "^.*$"
}
],
"example": 4500
},
"clops_v": {
"description": "가상 CLOPS — 사용할 수 없는 경우 숫자 값 또는 설명 문자열일 수 있음.",
"oneOf": [
{
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647
},
{
"type": "string",
"pattern": "^.*$"
}
],
"example": "None"
},
"mcps": {
"description": "초당 최대 회로 수 (MCPS). 하다마르 연산과 단일 측정을 수행하는 회로가 작동할 수 있는 최대 속도.",
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647,
"example": 4500
},
"conditional": {
"type": "boolean",
"description": "백엔드에서 조건부 연산(참/거짓) 지원",
"default": false,
"example": true
},
"conditional_latency": {
"description": "차원 n\\_채널 [d->u->m] x n\\_레지스터의 배열입니다. 레지스터 슬롯 m에서 채널 n에 대한 조건부 연산을 수행하는 데 걸리는 지연 시간(dt 단위)",
"items": {
"type": "array"
},
"example": [
[
0,
1.2
],
[
0.5,
0.8
]
],
"type": "array"
},
"configurable": {
"type": "boolean",
"description": "백엔드가 시뮬레이터인 경우 백엔드를 구성할 수 있습니다(참/거짓)",
"default": false,
"example": true
},
"coupling_map": {
"type": "array",
"description": "백엔드에서 물리적으로 결합된 큐비트 그룹화 배열",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "array",
"minItems": 2,
"maxItems": 2147483647,
"items": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647
}
},
"example": [
[
0,
1
],
[
1,
2
]
]
},
"coords": {
"type": "array",
"description": "QPU 토폴로지상 각 큐비트의 위치를 나타내는 [i, j] 격자 좌표 배열. 이 인덱스는 큐비트 인덱스와 일치합니다. 예시: [ [1,1], [1,2], [2,1], [2,2] ]는 Q0 를 1행 1열에, Q1 를 1행 2열에, Q2 를 2행 1열에, Q3 를 2행 2열에 배치합니다.",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647
}
},
"example": [
[
1,
1
],
[
1,
2
],
[
2,
1
],
[
2,
2
]
]
},
"credits_required": {
"type": "boolean",
"description": "백엔드에서 작업을 실행하려면 크레딧이 필요합니다(참/거짓)",
"default": false,
"example": true
},
"description": {
"type": "string",
"description": "백엔드에 대한 설명",
"pattern": "^.*$",
"minLength": 1,
"maxLength": 64,
"example": "This backend supports 5 qubits and OpenPulse."
},
"display_name": {
"type": "string",
"description": "백엔드의 대체 이름 필드",
"pattern": "^[a-zA-Z0-9]*$",
"minLength": 1,
"maxLength": 64,
"example": "EagleBackend"
},
"discriminators": {
"description": "사용 가능한 구별자",
"minItems": 1,
"maxItems": 64,
"example": [
"disc1",
"disc2"
],
"type": "array",
"items": {
"type": "string",
"maxLength": 64,
"minLength": 1,
"pattern": "^[a-zA-Z0-9]*$"
}
},
"dt": {
"type": "integer",
"format": "int32",
"description": "드라이브 및 U 채널에 대한 시간 이산화",
"minimum": 0,
"maximum": 2147483647,
"example": 1
},
"dtm": {
"type": "integer",
"format": "int32",
"description": "측정 채널에 대한 시간 이산화",
"minimum": 0,
"maximum": 2147483647,
"example": 1
},
"default_rep_delay": {
"type": "integer",
"format": "int32",
"description": "기본 담당자 지연.",
"minimum": 0,
"maximum": 2147483647,
"example": 3
},
"dynamic_reprate_enabled": {
"type": "boolean",
"description": "프로그램 간 지연 시간을 'rep\\_delay'를 사용하여 동적으로 설정할 수 있는지 여부.",
"default": false,
"example": true
},
"gates": {
"description": "백엔드의 베이시스 게이트 목록",
"minItems": 1,
"maxItems": 64,
"type": "array",
"items": {
"type": "object",
"description": "게이트의 정의",
"required": [
"name",
"parameters",
"qasm_def"
],
"properties": {
"name": {
"type": "string",
"description": "QASM에서 참조할 게이트 이름입니다",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-zA-Z0-9]*$"
},
"parameters": {
"type": "array",
"description": "게이트 파라미터의 변수 이름(있는 경우)",
"minItems": 0,
"maxItems": 1024,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-zA-Z0-9]*$"
}
},
"coupling_map": {
"type": "array",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "array",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647
}
},
"description": "이 게이트에 의해 결합된 큐비트 그룹 목록"
},
"qasm_def": {
"type": "string",
"description": "이 게이트에 대한 QASM 기본 요소 U 및 CX의 정의",
"pattern": "^.*$",
"minLength": 1,
"maxLength": 1024
},
"conditional": {
"type": "boolean",
"description": "이 지정된 게이트는 조건부 연산(참/거짓)을 지원합니다. 이를 지정하지 않으면 게이트는 백엔드의 조건부 속성을 상속합니다.",
"default": false
},
"latency_map": {
"type": "array",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "array",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 1
}
},
"description": "게이트의 레지스터 대기 시간 조건부 연산(1 - 빠름, 0 - 느림)을 지정하는 차원 len(coupling\\_map) X n\\_레지스터의 배열입니다"
},
"description": {
"type": "string",
"description": "게이트 작동에 대한 설명",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-zA-Z0-9\\s]*$"
}
}
}
},
"hamiltonian": {
"description": "백엔드의 해밀턴",
"deprecated": true,
"allOf": [
{
"type": "object",
"description": "백엔드의 해밀턴",
"properties": {
"h_latex": {
"type": "string",
"description": "라텍스 형태의 해밀턴",
"minLength": 1,
"maxLength": 4096,
"pattern": "^.*$"
},
"h_str": {
"type": "array",
"description": "기계 판독 가능한 형식의 해밀턴",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024,
"pattern": "^.*$"
},
"example": [
"\"0.5 * X0 Y1\"",
"\"1.0 * Z0\""
]
},
"vars": {
"type": "object",
"description": "H\\_str의 변수"
},
"osc": {
"type": "object",
"description": "각 오실레이터 모드의 레벨 수"
}
},
"required": [
"h_latex"
]
}
]
},
"local": {
"type": "boolean",
"description": "백엔드가 로컬 또는 원격인지 여부(참/거짓)",
"example": true
},
"max_experiments": {
"type": "integer",
"format": "int64",
"description": "지원되는 최대 실험 수",
"minimum": 1,
"maximum": 9007199254740991,
"example": 10
},
"max_shots": {
"type": "integer",
"format": "int64",
"description": "지원되는 최대 촬영 수",
"minimum": 1,
"maximum": 9007199254740991,
"example": 1024
},
"meas_levels": {
"description": "백엔드에서 사용 가능한 측정 수준",
"minItems": 1,
"maxItems": 3,
"items": {
"type": "array"
},
"example": [
1,
2
],
"type": "array"
},
"meas_lo_range": {
"description": "측정 주파수 범위 LO",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "array"
},
"type": "array"
},
"meas_map": {
"description": "다중화된 측정 그룹화",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "array"
},
"example": [
[
0,
1
],
[
2,
3
]
],
"type": "array"
},
"measure_esp_enabled": {
"type": "boolean",
"description": "백엔드에서 ESP 판독을 지원하는지 여부입니다.",
"default": false,
"example": true
},
"memory": {
"type": "boolean",
"description": "백엔드 지원 메모리(참/거짓)",
"default": false,
"example": true
},
"n_qubits": {
"type": "integer",
"format": "int32",
"description": "큐비트 수",
"minimum": 1,
"maximum": 2147483647,
"default": 1,
"example": 5
},
"n_registers": {
"type": "number",
"description": "피드백에 사용할 수 있는 레지스터 슬롯 수(조건이 참인 경우)",
"minimum": 1,
"maximum": 2147483647,
"default": 1,
"example": 1
},
"n_uchannels": {
"type": "number",
"description": "추가 제어 채널 수",
"minimum": 0,
"maximum": 9007199254740991,
"example": 2
},
"online_date": {
"type": "string",
"description": "백엔드가 온라인 상태가 된 날짜",
"format": "date-time",
"minLength": 24,
"maxLength": 24,
"example": "2025-11-12T15:30:00.000Z"
},
"open_pulse": {
"type": "boolean",
"description": "존재할 경우 open_pulse = false 스키마가 적용됩니다",
"example": true
},
"parametric_pulses": {
"description": "사용 가능한 파라메트릭 펄스 모양 목록",
"minItems": 0,
"maxItems": 1024,
"items": {
"type": "array"
},
"example": [
"Gaussian",
"Square"
],
"type": "array"
},
"processor_type": {
"description": "장치의 프로세서 유형",
"allOf": [
{
"type": "object",
"description": "이 백엔드의 프로세서 유형",
"required": [
"family",
"revision"
],
"properties": {
"family": {
"type": "string",
"description": "프로세서 제품군은 양자 칩 아키텍처를 나타냅니다",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-zA-Z0-9]*$"
},
"revision": {
"type": "string",
"description": "리비전 번호는 특정 프로세서 제품군 내의 설계 변형을 반영합니다. 일반적으로 패치 값이 없는 시맨틱 버전 관리 값입니다(예: \" 1.0 \").",
"minLength": 1,
"maxLength": 64,
"pattern": "^[0-9]+.[0-9]+$"
},
"segment": {
"type": "string",
"description": "세그먼트(표시된 경우)는 큐비트 패브릭/칩의 여러 하위 집합을 구분하는 데 사용됩니다",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-zA-Z0-9]*$"
}
}
}
]
},
"quantum_volume": {
"type": "number",
"description": "백엔드 양자 볼륨",
"minimum": 1,
"maximum": 9007199254740991,
"example": 32
},
"qubit_lo_range": {
"description": "큐비트 LO의 주파수 범위",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "array"
},
"example": [
[
4500000000,
5000000000
],
[
5100000000,
5600000000
]
],
"type": "array"
},
"register_map": {
"description": "n\\_qubits X n\\_registers 차원의 배열로 저장 용량을 나타냄",
"minItems": 1,
"maxItems": 2147483647,
"items": {
"type": "array"
},
"example": [
[
1,
0
],
[
0,
1
]
],
"type": "array"
},
"rep_delay_range": {
"description": "백엔드에서 허용하는 프로그램 간 지연 시간 범위(마이크로초)입니다.",
"minItems": 2,
"maxItems": 2,
"example": [
100,
1000
],
"type": "array",
"items": {
"type": "number"
}
},
"rep_times": {
"description": "백엔드에서 지원하는 프로그램 실행 시간(마이크로초).",
"minItems": 1,
"maxItems": 64,
"items": {
"type": "number"
},
"example": [
100,
200,
500
],
"type": "array"
},
"sample_name": {
"type": "string",
"description": "샘플 이름",
"pattern": "^[a-zA-Z0-9,:\\s]*$",
"minLength": 1,
"maxLength": 64,
"example": "Sample_01:Test"
},
"simulator": {
"type": "boolean",
"description": "백엔드는 시뮬레이터입니다(참/거짓)",
"default": false,
"example": true
},
"supported_features": {
"description": "백엔드에서 지원하는 기능의 배열, 예를 들어 qasm3",
"minItems": 0,
"maxItems": 64,
"example": [
"qasm3"
],
"type": "array",
"items": {
"type": "string"
}
},
"supported_instructions": {
"description": "백엔드에서 지원하는 지침입니다.",
"minItems": 0,
"maxItems": 64,
"example": [
"u1",
"cx",
"measure"
],
"type": "array",
"items": {
"type": "string"
}
},
"tags": {
"description": "백엔드용 태그",
"uniqueItems": true,
"minItems": 1,
"maxItems": 64,
"example": [
"credits_required",
"simulator"
],
"type": "array",
"items": {
"type": "string"
}
},
"timing_constraints": {
"description": "백엔드의 타이밍 제약 조건",
"allOf": [
{
"type": "object",
"description": "이 백엔드의 타이밍 제약 조건",
"properties": {
"granularity": {
"type": "integer",
"format": "int64",
"description": "파형 메모리 데이터 청크 크기",
"maximum": 9007199254740991,
"minimum": 0
},
"min_length": {
"type": "integer",
"format": "int64",
"description": "펄스를 정의하는 데 필요한 최소 샘플 수",
"maximum": 9007199254740991,
"minimum": 0
},
"pulse_alignment": {
"type": "integer",
"format": "int64",
"description": "펄스 채널의 명령 트리거링 시간 분해능(dt 단위)",
"maximum": 9007199254740991,
"minimum": 0
},
"acquire_alignment": {
"type": "integer",
"format": "int64",
"description": "명령 트리거링 시간 분해능을 dt 단위로 표시한 획득 채널의 명령",
"maximum": 9007199254740991,
"minimum": 0
}
}
}
]
},
"u_channel_lo": {
"type": "array",
"items": {
"minItems": 1,
"maxItems": 2147483647,
"description": "큐비트 LO 측면에서의 U 채널 LO 관계",
"type": "array",
"items": {
"type": "object",
"description": "단일 U 채널 LO에 대한 설명은 쿼비트 LO의 관점에서 설명합니다",
"properties": {
"q": {
"type": "integer",
"format": "int32",
"minimum": 1,
"maximum": 2147483647,
"description": "큐비트 번호"
},
"scale": {
"type": "object",
"properties": {
"number": {
"minItems": 2,
"maxItems": 2,
"items": {
"type": "array"
},
"type": "array"
}
},
"required": [
"number"
]
}
},
"required": [
"q",
"scale"
]
}
}
}
}
}백엔드 기본 설정 가져오기
지정된 백엔드의 기본값을 반환합니다. 시뮬레이터 백엔드는 이를 지원하지 않을 수 있습니다.
권한 부여
이 메소드를 호출하려면 다음 조치를 포함하는 하나 이상의 IAM 액세스 역할이 지정되어야 합니다. 다음으로 이동하여 액세스 권한을 확인할 수 있습니다. Users > User > Access
quantum-computing.device.read
감사
이 메소드를 호출하면 다음과 같은 감사 이벤트가 생성됩니다.
quantum-computing.device.read
입력
이름, 유형 | 설명 |
|---|---|
id 필수 string | 사용 가능한 백엔드의 식별자 |
인스턴스가 eu-de 리전에 있는 경우, 대신 URL 를 사용하세요: https://eu-de.quantum.cloud.ibm.com/api/v1/backends/{id}/defaults
curl -X GET \
'https://quantum.cloud.ibm.com/api/v1/backends/{id}/defaults' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer YOUR-TOKEN' \
-H 'Service-CRN: YOUR-SERVICE-CRN' \
-H 'IBM-API-Version: 2024-01-01' 인스턴스가 eu-de 리전에 있는 경우, 대신 URL 를 사용하세요: https://eu-de.quantum.cloud.ibm.com/api/v1/backends/{id}/defaults
import requests
response = requests.request(
"GET",
"https://quantum.cloud.ibm.com/api/v1/backends/{id}/defaults",
headers={
"Accept": "application/json",
"IBM-API-Version": "2024-01-01",
"Authorization": "Bearer YOUR-TOKEN",
"Service-CRN": "YOUR-SERVICE-CRN"
},
)
print(response.json())출력
상태 코드 | 설명 |
|---|---|
| 200 | 확인 |
{
"buffer": 0,
"cmd_def": [
{
"name": "cx",
"qubits": [
0,
1
],
"sequence": [
{
"ch": "d0",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
},
{
"ch": "d0",
"label": "Ym_d0",
"name": "parametric_pulse",
"parameters": {
"amp": [
-3.1140747235331546e-17,
-0.16952233224585217
],
"beta": -0.5674696838555093,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d0",
"label": "Xp_d0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.16952233224585217,
0
],
"beta": -0.5674696838555093,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 720
},
{
"ch": "d1",
"label": "X90p_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.059382748314504706,
0.0024457355228724932
],
"beta": -1.237863708498682,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d1",
"label": "CR90p_d1_u0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.04032804952407305,
0.002308863263836048
],
"duration": 560,
"sigma": 64,
"width": 304
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "d1",
"label": "CR90m_d1_u0",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.04032804952407305,
-0.0023088632638360433
],
"duration": 560,
"sigma": 64,
"width": 304
},
"pulse_shape": "gaussian_square",
"t0": 880
},
{
"ch": "u0",
"label": "CR90p_u0",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.16404838638752248,
0.447984379626925
],
"duration": 560,
"sigma": 64,
"width": 304
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "u0",
"label": "CR90m_u0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.16404838638752242,
-0.447984379626925
],
"duration": 560,
"sigma": 64,
"width": 304
},
"pulse_shape": "gaussian_square",
"t0": 880
},
{
"ch": "u1",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
}
]
},
{
"name": "cx",
"qubits": [
1,
0
],
"sequence": [
{
"ch": "d0",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
},
{
"ch": "d0",
"label": "X90p_d0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.08517070544657084,
0.001315475138119147
],
"beta": -0.7390638896391939,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d0",
"label": "Xp_d0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.16952233224585217,
0
],
"beta": -0.5674696838555093,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 720
},
{
"ch": "d0",
"label": "Y90m_d0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.0013154751381191001,
-0.08517070544657084
],
"beta": -0.7390638896391939,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 1440
},
{
"ch": "d1",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "d1",
"label": "Y90p_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.002445735522872487,
0.059382748314504706
],
"beta": -1.237863708498682,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d1",
"label": "CR90p_d1_u0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.04032804952407305,
0.002308863263836048
],
"duration": 560,
"sigma": 64,
"width": 304
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "d1",
"label": "CR90m_d1_u0",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.04032804952407305,
-0.0023088632638360433
],
"duration": 560,
"sigma": 64,
"width": 304
},
"pulse_shape": "gaussian_square",
"t0": 880
},
{
"ch": "d1",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 1440
},
{
"ch": "d1",
"label": "X90p_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.059382748314504706,
0.0024457355228724932
],
"beta": -1.237863708498682,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 1440
},
{
"ch": "u0",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "u0",
"label": "CR90p_u0",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.16404838638752248,
0.447984379626925
],
"duration": 560,
"sigma": 64,
"width": 304
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "u0",
"label": "CR90m_u0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.16404838638752242,
-0.447984379626925
],
"duration": 560,
"sigma": 64,
"width": 304
},
"pulse_shape": "gaussian_square",
"t0": 880
},
{
"ch": "u0",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 1440
},
{
"ch": "u1",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
},
{
"ch": "u3",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "u3",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 1440
}
]
},
{
"name": "cx",
"qubits": [
1,
2
],
"sequence": [
{
"ch": "d1",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
},
{
"ch": "d1",
"label": "Ym_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
-2.180777454747743e-17,
-0.1187159952984586
],
"beta": -1.0471056504145406,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d1",
"label": "Xp_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.1187159952984586,
0
],
"beta": -1.0471056504145406,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 2496
},
{
"ch": "d2",
"label": "X90p_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.10198650862634871,
0.0013394683261926034
],
"beta": -1.2964438429020329,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d2",
"label": "CR90p_d2_u2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.013873453640614737,
0.0014386033517831067
],
"duration": 2336,
"sigma": 64,
"width": 2080
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "d2",
"label": "CR90m_d2_u2",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.013873453640614737,
-0.001438603351783105
],
"duration": 2336,
"sigma": 64,
"width": 2080
},
"pulse_shape": "gaussian_square",
"t0": 2656
},
{
"ch": "u0",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
},
{
"ch": "u2",
"label": "CR90p_u2",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.08815065228735922,
-0.1970686366802925
],
"duration": 2336,
"sigma": 64,
"width": 2080
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "u2",
"label": "CR90m_u2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.08815065228735924,
0.1970686366802925
],
"duration": 2336,
"sigma": 64,
"width": 2080
},
"pulse_shape": "gaussian_square",
"t0": 2656
},
{
"ch": "u3",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
}
]
},
{
"name": "cx",
"qubits": [
2,
1
],
"sequence": [
{
"ch": "d1",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
},
{
"ch": "d1",
"label": "X90p_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.059382748314504706,
0.0024457355228724932
],
"beta": -1.237863708498682,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d1",
"label": "Xp_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.1187159952984586,
0
],
"beta": -1.0471056504145406,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 2496
},
{
"ch": "d1",
"label": "Y90m_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.0024457355228724932,
-0.059382748314504706
],
"beta": -1.237863708498682,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 4992
},
{
"ch": "d2",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "d2",
"label": "Y90p_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.0013394683261925924,
0.10198650862634871
],
"beta": -1.2964438429020329,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d2",
"label": "CR90p_d2_u2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.013873453640614737,
0.0014386033517831067
],
"duration": 2336,
"sigma": 64,
"width": 2080
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "d2",
"label": "CR90m_d2_u2",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.013873453640614737,
-0.001438603351783105
],
"duration": 2336,
"sigma": 64,
"width": 2080
},
"pulse_shape": "gaussian_square",
"t0": 2656
},
{
"ch": "d2",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 4992
},
{
"ch": "d2",
"label": "X90p_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.10198650862634871,
0.0013394683261926034
],
"beta": -1.2964438429020329,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 4992
},
{
"ch": "u0",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
},
{
"ch": "u2",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "u2",
"label": "CR90p_u2",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.08815065228735922,
-0.1970686366802925
],
"duration": 2336,
"sigma": 64,
"width": 2080
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "u2",
"label": "CR90m_u2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.08815065228735924,
0.1970686366802925
],
"duration": 2336,
"sigma": 64,
"width": 2080
},
"pulse_shape": "gaussian_square",
"t0": 2656
},
{
"ch": "u2",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 4992
},
{
"ch": "u3",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
},
{
"ch": "u5",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "u5",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 4992
}
]
},
{
"name": "cx",
"qubits": [
2,
3
],
"sequence": [
{
"ch": "d2",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "d2",
"label": "Y90p_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.0013394683261925924,
0.10198650862634871
],
"beta": -1.2964438429020329,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d2",
"label": "CR90p_d2_u5",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.06276974408273035,
0.0014224518263545513
],
"duration": 608,
"sigma": 64,
"width": 352
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "d2",
"label": "CR90m_d2_u5",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.06276974408273035,
-0.0014224518263545437
],
"duration": 608,
"sigma": 64,
"width": 352
},
"pulse_shape": "gaussian_square",
"t0": 928
},
{
"ch": "d2",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 1536
},
{
"ch": "d2",
"label": "X90p_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.10198650862634871,
0.0013394683261926034
],
"beta": -1.2964438429020329,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 1536
},
{
"ch": "d3",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
},
{
"ch": "d3",
"label": "X90p_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.09228885314852181,
0.0014025742426091116
],
"beta": -1.7711144727110373,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d3",
"label": "Xp_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.18517121372479672,
0
],
"beta": -1.4562294009889265,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 768
},
{
"ch": "d3",
"label": "Y90m_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.0014025742426090819,
-0.09228885314852181
],
"beta": -1.7711144727110373,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 1536
},
{
"ch": "u2",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "u2",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 1536
},
{
"ch": "u4",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
},
{
"ch": "u5",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "u5",
"label": "CR90p_u5",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.23873583834386253,
-0.1601498890635595
],
"duration": 608,
"sigma": 64,
"width": 352
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "u5",
"label": "CR90m_u5",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.2387358383438625,
0.16014988906355954
],
"duration": 608,
"sigma": 64,
"width": 352
},
"pulse_shape": "gaussian_square",
"t0": 928
},
{
"ch": "u5",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 1536
},
{
"ch": "u7",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
}
]
},
{
"name": "cx",
"qubits": [
3,
2
],
"sequence": [
{
"ch": "d2",
"label": "X90p_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.10198650862634871,
0.0013394683261926034
],
"beta": -1.2964438429020329,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d2",
"label": "CR90p_d2_u5",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.06276974408273035,
0.0014224518263545513
],
"duration": 608,
"sigma": 64,
"width": 352
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "d2",
"label": "CR90m_d2_u5",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.06276974408273035,
-0.0014224518263545437
],
"duration": 608,
"sigma": 64,
"width": 352
},
"pulse_shape": "gaussian_square",
"t0": 928
},
{
"ch": "d3",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
},
{
"ch": "d3",
"label": "Ym_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
-3.401540012734541e-17,
-0.18517121372479672
],
"beta": -1.4562294009889265,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d3",
"label": "Xp_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.18517121372479672,
0
],
"beta": -1.4562294009889265,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 768
},
{
"ch": "u4",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
},
{
"ch": "u5",
"label": "CR90p_u5",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.23873583834386253,
-0.1601498890635595
],
"duration": 608,
"sigma": 64,
"width": 352
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "u5",
"label": "CR90m_u5",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.2387358383438625,
0.16014988906355954
],
"duration": 608,
"sigma": 64,
"width": 352
},
"pulse_shape": "gaussian_square",
"t0": 928
},
{
"ch": "u7",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
}
]
},
{
"name": "cx",
"qubits": [
3,
4
],
"sequence": [
{
"ch": "d3",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
},
{
"ch": "d3",
"label": "Ym_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
-3.401540012734541e-17,
-0.18517121372479672
],
"beta": -1.4562294009889265,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d3",
"label": "Xp_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.18517121372479672,
0
],
"beta": -1.4562294009889265,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 1072
},
{
"ch": "d4",
"label": "X90p_d4",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.10297400564208449,
0.0013551899851024537
],
"beta": -1.8552991568863249,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d4",
"label": "CR90p_d4_u6",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.03707867423075375,
0.0008398523265316366
],
"duration": 912,
"sigma": 64,
"width": 656
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "d4",
"label": "CR90m_d4_u6",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.03707867423075375,
-0.000839852326531632
],
"duration": 912,
"sigma": 64,
"width": 656
},
"pulse_shape": "gaussian_square",
"t0": 1232
},
{
"ch": "u4",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
},
{
"ch": "u6",
"label": "CR90p_u6",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.007010429360857565,
-0.15811445188422757
],
"duration": 912,
"sigma": 64,
"width": 656
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "u6",
"label": "CR90m_u6",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.007010429360857584,
0.15811445188422757
],
"duration": 912,
"sigma": 64,
"width": 656
},
"pulse_shape": "gaussian_square",
"t0": 1232
},
{
"ch": "u7",
"name": "fc",
"phase": 1.5707963267948966,
"t0": 0
}
]
},
{
"name": "cx",
"qubits": [
4,
3
],
"sequence": [
{
"ch": "d3",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
},
{
"ch": "d3",
"label": "X90p_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.09228885314852181,
0.0014025742426091116
],
"beta": -1.7711144727110373,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d3",
"label": "Xp_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.18517121372479672,
0
],
"beta": -1.4562294009889265,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 1072
},
{
"ch": "d3",
"label": "Y90m_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.0014025742426090819,
-0.09228885314852181
],
"beta": -1.7711144727110373,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 2144
},
{
"ch": "d4",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "d4",
"label": "Y90p_d4",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.001355189985102449,
0.10297400564208449
],
"beta": -1.8552991568863249,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d4",
"label": "CR90p_d4_u6",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.03707867423075375,
0.0008398523265316366
],
"duration": 912,
"sigma": 64,
"width": 656
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "d4",
"label": "CR90m_d4_u6",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.03707867423075375,
-0.000839852326531632
],
"duration": 912,
"sigma": 64,
"width": 656
},
"pulse_shape": "gaussian_square",
"t0": 1232
},
{
"ch": "d4",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 2144
},
{
"ch": "d4",
"label": "X90p_d4",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.10297400564208449,
0.0013551899851024537
],
"beta": -1.8552991568863249,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 2144
},
{
"ch": "u4",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
},
{
"ch": "u6",
"name": "fc",
"phase": -3.141592653589793,
"t0": 0
},
{
"ch": "u6",
"label": "CR90p_u6",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.007010429360857565,
-0.15811445188422757
],
"duration": 912,
"sigma": 64,
"width": 656
},
"pulse_shape": "gaussian_square",
"t0": 160
},
{
"ch": "u6",
"label": "CR90m_u6",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.007010429360857584,
0.15811445188422757
],
"duration": 912,
"sigma": 64,
"width": 656
},
"pulse_shape": "gaussian_square",
"t0": 1232
},
{
"ch": "u6",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 2144
},
{
"ch": "u7",
"name": "fc",
"phase": -1.5707963267948966,
"t0": 0
}
]
},
{
"name": "id",
"qubits": [
0
],
"sequence": [
{
"ch": "d0",
"name": "QId_d0",
"t0": 0
}
]
},
{
"name": "id",
"qubits": [
1
],
"sequence": [
{
"ch": "d1",
"name": "QId_d1",
"t0": 0
}
]
},
{
"name": "id",
"qubits": [
2
],
"sequence": [
{
"ch": "d2",
"name": "QId_d2",
"t0": 0
}
]
},
{
"name": "id",
"qubits": [
3
],
"sequence": [
{
"ch": "d3",
"name": "QId_d3",
"t0": 0
}
]
},
{
"name": "id",
"qubits": [
4
],
"sequence": [
{
"ch": "d4",
"name": "QId_d4",
"t0": 0
}
]
},
{
"name": "measure",
"qubits": [
0
],
"sequence": [
{
"ch": "m0",
"label": "M_m0",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.0692929110515423,
0.03998115153422982
],
"duration": 12224,
"sigma": 64,
"width": 11968
},
"pulse_shape": "gaussian_square",
"t0": 0
},
{
"ch": "m0",
"duration": 1376,
"name": "delay",
"t0": 12224
},
{
"duration": 12224,
"memory_slot": [
0,
1,
2,
3,
4
],
"name": "acquire",
"qubits": [
0,
1,
2,
3,
4
],
"t0": 0
}
]
},
{
"name": "measure",
"qubits": [
0,
1,
2,
3,
4
],
"sequence": [
{
"ch": "m0",
"label": "M_m0",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.0692929110515423,
0.03998115153422982
],
"duration": 12224,
"sigma": 64,
"width": 11968
},
"pulse_shape": "gaussian_square",
"t0": 0
},
{
"ch": "m0",
"duration": 1376,
"name": "delay",
"t0": 12224
},
{
"ch": "m1",
"label": "M_m1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.04579128497698148,
-0.060656064990706984
],
"duration": 12224,
"sigma": 64,
"width": 11968
},
"pulse_shape": "gaussian_square",
"t0": 0
},
{
"ch": "m1",
"duration": 1376,
"name": "delay",
"t0": 12224
},
{
"ch": "m2",
"label": "M_m2",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.09958477403974661,
-0.06695425885970666
],
"duration": 12224,
"sigma": 64,
"width": 11968
},
"pulse_shape": "gaussian_square",
"t0": 0
},
{
"ch": "m2",
"duration": 1376,
"name": "delay",
"t0": 12224
},
{
"ch": "m3",
"label": "M_m3",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.07089986443714817,
-0.03705683773332545
],
"duration": 12224,
"sigma": 64,
"width": 11968
},
"pulse_shape": "gaussian_square",
"t0": 0
},
{
"ch": "m3",
"duration": 1376,
"name": "delay",
"t0": 12224
},
{
"ch": "m4",
"label": "M_m4",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.04511005940938134,
-0.07787863981915763
],
"duration": 12224,
"sigma": 64,
"width": 11968
},
"pulse_shape": "gaussian_square",
"t0": 0
},
{
"ch": "m4",
"duration": 1376,
"name": "delay",
"t0": 12224
},
{
"duration": 12224,
"memory_slot": [
0,
1,
2,
3,
4
],
"name": "acquire",
"qubits": [
0,
1,
2,
3,
4
],
"t0": 0
}
]
},
{
"name": "measure",
"qubits": [
1
],
"sequence": [
{
"ch": "m1",
"label": "M_m1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.04579128497698148,
-0.060656064990706984
],
"duration": 12224,
"sigma": 64,
"width": 11968
},
"pulse_shape": "gaussian_square",
"t0": 0
},
{
"ch": "m1",
"duration": 1376,
"name": "delay",
"t0": 12224
},
{
"duration": 12224,
"memory_slot": [
0,
1,
2,
3,
4
],
"name": "acquire",
"qubits": [
0,
1,
2,
3,
4
],
"t0": 0
}
]
},
{
"name": "measure",
"qubits": [
2
],
"sequence": [
{
"ch": "m2",
"label": "M_m2",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.09958477403974661,
-0.06695425885970666
],
"duration": 12224,
"sigma": 64,
"width": 11968
},
"pulse_shape": "gaussian_square",
"t0": 0
},
{
"ch": "m2",
"duration": 1376,
"name": "delay",
"t0": 12224
},
{
"duration": 12224,
"memory_slot": [
0,
1,
2,
3,
4
],
"name": "acquire",
"qubits": [
0,
1,
2,
3,
4
],
"t0": 0
}
]
},
{
"name": "measure",
"qubits": [
3
],
"sequence": [
{
"ch": "m3",
"label": "M_m3",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.07089986443714817,
-0.03705683773332545
],
"duration": 12224,
"sigma": 64,
"width": 11968
},
"pulse_shape": "gaussian_square",
"t0": 0
},
{
"ch": "m3",
"duration": 1376,
"name": "delay",
"t0": 12224
},
{
"duration": 12224,
"memory_slot": [
0,
1,
2,
3,
4
],
"name": "acquire",
"qubits": [
0,
1,
2,
3,
4
],
"t0": 0
}
]
},
{
"name": "measure",
"qubits": [
4
],
"sequence": [
{
"ch": "m4",
"label": "M_m4",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.04511005940938134,
-0.07787863981915763
],
"duration": 12224,
"sigma": 64,
"width": 11968
},
"pulse_shape": "gaussian_square",
"t0": 0
},
{
"ch": "m4",
"duration": 1376,
"name": "delay",
"t0": 12224
},
{
"duration": 12224,
"memory_slot": [
0,
1,
2,
3,
4
],
"name": "acquire",
"qubits": [
0,
1,
2,
3,
4
],
"t0": 0
}
]
},
{
"name": "rz",
"qubits": [
0
],
"sequence": [
{
"ch": "d0",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u1",
"name": "fc",
"phase": "-(P0)",
"t0": 0
}
]
},
{
"name": "rz",
"qubits": [
1
],
"sequence": [
{
"ch": "d1",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u0",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u3",
"name": "fc",
"phase": "-(P0)",
"t0": 0
}
]
},
{
"name": "rz",
"qubits": [
2
],
"sequence": [
{
"ch": "d2",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u2",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u5",
"name": "fc",
"phase": "-(P0)",
"t0": 0
}
]
},
{
"name": "rz",
"qubits": [
3
],
"sequence": [
{
"ch": "d3",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u4",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u7",
"name": "fc",
"phase": "-(P0)",
"t0": 0
}
]
},
{
"name": "rz",
"qubits": [
4
],
"sequence": [
{
"ch": "d4",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u6",
"name": "fc",
"phase": "-(P0)",
"t0": 0
}
]
},
{
"name": "sx",
"qubits": [
0
],
"sequence": [
{
"ch": "d0",
"label": "X90p_d0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.08517070544657084,
0.001315475138119147
],
"beta": -0.7390638896391939,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
}
]
},
{
"name": "sx",
"qubits": [
1
],
"sequence": [
{
"ch": "d1",
"label": "X90p_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.059382748314504706,
0.0024457355228724932
],
"beta": -1.237863708498682,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
}
]
},
{
"name": "sx",
"qubits": [
2
],
"sequence": [
{
"ch": "d2",
"label": "X90p_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.10198650862634871,
0.0013394683261926034
],
"beta": -1.2964438429020329,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
}
]
},
{
"name": "sx",
"qubits": [
3
],
"sequence": [
{
"ch": "d3",
"label": "X90p_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.09228885314852181,
0.0014025742426091116
],
"beta": -1.7711144727110373,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
}
]
},
{
"name": "sx",
"qubits": [
4
],
"sequence": [
{
"ch": "d4",
"label": "X90p_d4",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.10297400564208449,
0.0013551899851024537
],
"beta": -1.8552991568863249,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
}
]
},
{
"name": "u1",
"qubits": [
0
],
"sequence": [
{
"ch": "d0",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u1",
"name": "fc",
"phase": "-(P0)",
"t0": 0
}
]
},
{
"name": "u1",
"qubits": [
1
],
"sequence": [
{
"ch": "d1",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u0",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u3",
"name": "fc",
"phase": "-(P0)",
"t0": 0
}
]
},
{
"name": "u1",
"qubits": [
2
],
"sequence": [
{
"ch": "d2",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u2",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u5",
"name": "fc",
"phase": "-(P0)",
"t0": 0
}
]
},
{
"name": "u1",
"qubits": [
3
],
"sequence": [
{
"ch": "d3",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u4",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u7",
"name": "fc",
"phase": "-(P0)",
"t0": 0
}
]
},
{
"name": "u1",
"qubits": [
4
],
"sequence": [
{
"ch": "d4",
"name": "fc",
"phase": "-(P0)",
"t0": 0
},
{
"ch": "u6",
"name": "fc",
"phase": "-(P0)",
"t0": 0
}
]
},
{
"name": "u2",
"qubits": [
0
],
"sequence": [
{
"ch": "d0",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "d0",
"label": "Y90p_d0",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.0013154751381191485,
0.08517070544657084
],
"beta": -0.7390638896391939,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d0",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u1",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "u1",
"name": "fc",
"phase": "-(P0)",
"t0": 160
}
]
},
{
"name": "u2",
"qubits": [
1
],
"sequence": [
{
"ch": "d1",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "d1",
"label": "Y90p_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.002445735522872487,
0.059382748314504706
],
"beta": -1.237863708498682,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d1",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u0",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "u0",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u3",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "u3",
"name": "fc",
"phase": "-(P0)",
"t0": 160
}
]
},
{
"name": "u2",
"qubits": [
2
],
"sequence": [
{
"ch": "d2",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "d2",
"label": "Y90p_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.0013394683261925924,
0.10198650862634871
],
"beta": -1.2964438429020329,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d2",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u2",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "u2",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u5",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "u5",
"name": "fc",
"phase": "-(P0)",
"t0": 160
}
]
},
{
"name": "u2",
"qubits": [
3
],
"sequence": [
{
"ch": "d3",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "d3",
"label": "Y90p_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.0014025742426091135,
0.09228885314852181
],
"beta": -1.7711144727110373,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d3",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u4",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "u4",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u7",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "u7",
"name": "fc",
"phase": "-(P0)",
"t0": 160
}
]
},
{
"name": "u2",
"qubits": [
4
],
"sequence": [
{
"ch": "d4",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "d4",
"label": "Y90p_d4",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.001355189985102449,
0.10297400564208449
],
"beta": -1.8552991568863249,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d4",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u6",
"name": "fc",
"phase": "-(P1)",
"t0": 0
},
{
"ch": "u6",
"name": "fc",
"phase": "-(P0)",
"t0": 160
}
]
},
{
"name": "u3",
"qubits": [
0
],
"sequence": [
{
"ch": "d0",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "d0",
"label": "X90p_d0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.08517070544657084,
0.001315475138119147
],
"beta": -0.7390638896391939,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d0",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "d0",
"label": "X90m_d0",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.08517070544657084,
-0.001315475138119143
],
"beta": -0.7390638896391939,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 160
},
{
"ch": "d0",
"name": "fc",
"phase": "-(P1)",
"t0": 320
},
{
"ch": "u1",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "u1",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u1",
"name": "fc",
"phase": "-(P1)",
"t0": 320
}
]
},
{
"name": "u3",
"qubits": [
1
],
"sequence": [
{
"ch": "d1",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "d1",
"label": "X90p_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.059382748314504706,
0.0024457355228724932
],
"beta": -1.237863708498682,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d1",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "d1",
"label": "X90m_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.059382748314504706,
-0.002445735522872497
],
"beta": -1.237863708498682,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 160
},
{
"ch": "d1",
"name": "fc",
"phase": "-(P1)",
"t0": 320
},
{
"ch": "u0",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "u0",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u0",
"name": "fc",
"phase": "-(P1)",
"t0": 320
},
{
"ch": "u3",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "u3",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u3",
"name": "fc",
"phase": "-(P1)",
"t0": 320
}
]
},
{
"name": "u3",
"qubits": [
2
],
"sequence": [
{
"ch": "d2",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "d2",
"label": "X90p_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.10198650862634871,
0.0013394683261926034
],
"beta": -1.2964438429020329,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d2",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "d2",
"label": "X90m_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.10198650862634871,
-0.0013394683261925863
],
"beta": -1.2964438429020329,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 160
},
{
"ch": "d2",
"name": "fc",
"phase": "-(P1)",
"t0": 320
},
{
"ch": "u2",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "u2",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u2",
"name": "fc",
"phase": "-(P1)",
"t0": 320
},
{
"ch": "u5",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "u5",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u5",
"name": "fc",
"phase": "-(P1)",
"t0": 320
}
]
},
{
"name": "u3",
"qubits": [
3
],
"sequence": [
{
"ch": "d3",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "d3",
"label": "X90p_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.09228885314852181,
0.0014025742426091116
],
"beta": -1.7711144727110373,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d3",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "d3",
"label": "X90m_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.09228885314852181,
-0.0014025742426090875
],
"beta": -1.7711144727110373,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 160
},
{
"ch": "d3",
"name": "fc",
"phase": "-(P1)",
"t0": 320
},
{
"ch": "u4",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "u4",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u4",
"name": "fc",
"phase": "-(P1)",
"t0": 320
},
{
"ch": "u7",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "u7",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u7",
"name": "fc",
"phase": "-(P1)",
"t0": 320
}
]
},
{
"name": "u3",
"qubits": [
4
],
"sequence": [
{
"ch": "d4",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "d4",
"label": "X90p_d4",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.10297400564208449,
0.0013551899851024537
],
"beta": -1.8552991568863249,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
},
{
"ch": "d4",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "d4",
"label": "X90m_d4",
"name": "parametric_pulse",
"parameters": {
"amp": [
-0.10297400564208449,
-0.00135518998510242
],
"beta": -1.8552991568863249,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 160
},
{
"ch": "d4",
"name": "fc",
"phase": "-(P1)",
"t0": 320
},
{
"ch": "u6",
"name": "fc",
"phase": "-(P2)",
"t0": 0
},
{
"ch": "u6",
"name": "fc",
"phase": "-(P0)",
"t0": 160
},
{
"ch": "u6",
"name": "fc",
"phase": "-(P1)",
"t0": 320
}
]
},
{
"name": "x",
"qubits": [
0
],
"sequence": [
{
"ch": "d0",
"label": "Xp_d0",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.16952233224585217,
0
],
"beta": -0.5674696838555093,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
}
]
},
{
"name": "x",
"qubits": [
1
],
"sequence": [
{
"ch": "d1",
"label": "Xp_d1",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.1187159952984586,
0
],
"beta": -1.0471056504145406,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
}
]
},
{
"name": "x",
"qubits": [
2
],
"sequence": [
{
"ch": "d2",
"label": "Xp_d2",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.20350292430973976,
0
],
"beta": -1.097286648937289,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
}
]
},
{
"name": "x",
"qubits": [
3
],
"sequence": [
{
"ch": "d3",
"label": "Xp_d3",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.18517121372479672,
0
],
"beta": -1.4562294009889265,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
}
]
},
{
"name": "x",
"qubits": [
4
],
"sequence": [
{
"ch": "d4",
"label": "Xp_d4",
"name": "parametric_pulse",
"parameters": {
"amp": [
0.20604140102356464,
0
],
"beta": -1.6459873782317966,
"duration": 160,
"sigma": 40
},
"pulse_shape": "drag",
"t0": 0
}
]
}
],
"discriminator": {
"name": "hw_qmfk",
"params": {}
},
"meas_freq_est": [
7.423525326,
7.167956078,
7.316091357,
7.384056996,
7.247308081
],
"meas_kernel": {
"name": "hw_qmfk",
"params": {}
},
"pulse_library": [
{
"name": "QId_d0",
"samples": [
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
]
]
},
{
"name": "QId_d1",
"samples": [
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
]
]
},
{
"name": "QId_d2",
"samples": [
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
]
]
},
{
"name": "QId_d3",
"samples": [
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
]
]
},
{
"name": "QId_d4",
"samples": [
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
],
[
0,
0
]
]
}
],
"qubit_freq_est": [
4.968701124164304,
4.770103698982546,
5.0151628503963455,
5.259275396316249,
4.997550159631257
]
}{
"title": "BackendsDefaultsResponse",
"type": "object",
"description": "백엔드 기본값 응답",
"additionalProperties": true
}백엔드 속성 가져오기
지정된 백엔드의 속성을 반환합니다. 시뮬레이터 백엔드는 이를 지원하지 않을 수 있습니다.
권한 부여
이 메소드를 호출하려면 다음 조치를 포함하는 하나 이상의 IAM 액세스 역할이 지정되어야 합니다. 다음으로 이동하여 액세스 권한을 확인할 수 있습니다. Users > User > Access
quantum-computing.device.read
감사
이 메소드를 호출하면 다음과 같은 감사 이벤트가 생성됩니다.
quantum-computing.device.read
입력
이름, 유형 | 설명 |
|---|---|
id 필수 string | 사용 가능한 백엔드의 식별자 |
이름, 유형 | 설명 |
|---|---|
updated_before string | 지정된 시간 이전의 마지막_update_date를 가진 프로퍼티를 반환합니다. |
calibration_id string | 지정된 캘리브레이션 ID와 관련된 프로퍼티를 반환합니다. |
인스턴스가 eu-de 리전에 있는 경우, 대신 URL 를 사용하세요: https://eu-de.quantum.cloud.ibm.com/api/v1/backends/{id}/properties
curl -X GET \
'https://quantum.cloud.ibm.com/api/v1/backends/{id}/properties' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer YOUR-TOKEN' \
-H 'Service-CRN: YOUR-SERVICE-CRN' \
-H 'IBM-API-Version: 2024-01-01' 인스턴스가 eu-de 리전에 있는 경우, 대신 URL 를 사용하세요: https://eu-de.quantum.cloud.ibm.com/api/v1/backends/{id}/properties
import requests
response = requests.request(
"GET",
"https://quantum.cloud.ibm.com/api/v1/backends/{id}/properties",
headers={
"Accept": "application/json",
"IBM-API-Version": "2024-01-01",
"Authorization": "Bearer YOUR-TOKEN",
"Service-CRN": "YOUR-SERVICE-CRN"
},
)
print(response.json())출력
상태 코드 | 설명 |
|---|---|
| 200 | 확인 |
{
"backend_name": "test_rome",
"backend_version": "1.3.24",
"gates": [
{
"gate": "id",
"name": "id0",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0002448508047161394
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
0
]
},
{
"gate": "id",
"name": "id1",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.00027210394592247896
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
1
]
},
{
"gate": "id",
"name": "id2",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0003387889648653272
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
2
]
},
{
"gate": "id",
"name": "id3",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0002798062785893913
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
3
]
},
{
"gate": "id",
"name": "id4",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0007014941280759136
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
4
]
},
{
"gate": "rz",
"name": "rz0",
"parameters": [
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_error",
"unit": "",
"value": 0
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 0
}
],
"qubits": [
0
]
},
{
"gate": "rz",
"name": "rz1",
"parameters": [
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_error",
"unit": "",
"value": 0
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 0
}
],
"qubits": [
1
]
},
{
"gate": "rz",
"name": "rz2",
"parameters": [
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_error",
"unit": "",
"value": 0
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 0
}
],
"qubits": [
2
]
},
{
"gate": "rz",
"name": "rz3",
"parameters": [
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_error",
"unit": "",
"value": 0
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 0
}
],
"qubits": [
3
]
},
{
"gate": "rz",
"name": "rz4",
"parameters": [
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_error",
"unit": "",
"value": 0
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 0
}
],
"qubits": [
4
]
},
{
"gate": "sx",
"name": "sx0",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0002448508047161394
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
0
]
},
{
"gate": "sx",
"name": "sx1",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.00027210394592247896
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
1
]
},
{
"gate": "sx",
"name": "sx2",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0003387889648653272
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
2
]
},
{
"gate": "sx",
"name": "sx3",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0002798062785893913
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
3
]
},
{
"gate": "sx",
"name": "sx4",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0007014941280759136
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
4
]
},
{
"gate": "x",
"name": "x0",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0002448508047161394
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
0
]
},
{
"gate": "x",
"name": "x1",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.00027210394592247896
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
1
]
},
{
"gate": "x",
"name": "x2",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0003387889648653272
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
2
]
},
{
"gate": "x",
"name": "x3",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0002798062785893913
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
3
]
},
{
"gate": "x",
"name": "x4",
"parameters": [
{
"date": "2021-07-05T06:44:33Z",
"name": "gate_error",
"unit": "",
"value": 0.0007014941280759136
},
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 35.55555555555556
}
],
"qubits": [
4
]
},
{
"gate": "cx",
"name": "cx3_4",
"parameters": [
{
"date": "2021-07-05T08:13:43Z",
"name": "gate_error",
"unit": "",
"value": 0.01209269215862896
},
{
"date": "2021-07-02T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 476.4444444444444
}
],
"qubits": [
3,
4
]
},
{
"gate": "cx",
"name": "cx4_3",
"parameters": [
{
"date": "2021-07-05T08:13:43Z",
"name": "gate_error",
"unit": "",
"value": 0.01209269215862896
},
{
"date": "2021-07-02T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 512
}
],
"qubits": [
4,
3
]
},
{
"gate": "cx",
"name": "cx3_2",
"parameters": [
{
"date": "2021-07-05T08:10:30Z",
"name": "gate_error",
"unit": "",
"value": 0.008707373154178105
},
{
"date": "2021-07-02T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 341.3333333333333
}
],
"qubits": [
3,
2
]
},
{
"gate": "cx",
"name": "cx2_3",
"parameters": [
{
"date": "2021-07-05T08:10:30Z",
"name": "gate_error",
"unit": "",
"value": 0.008707373154178105
},
{
"date": "2021-07-02T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 376.88888888888886
}
],
"qubits": [
2,
3
]
},
{
"gate": "cx",
"name": "cx1_2",
"parameters": [
{
"date": "2021-07-05T08:05:34Z",
"name": "gate_error",
"unit": "",
"value": 0.01902233362337591
},
{
"date": "2021-07-02T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 1109.3333333333333
}
],
"qubits": [
1,
2
]
},
{
"gate": "cx",
"name": "cx2_1",
"parameters": [
{
"date": "2021-07-05T08:05:34Z",
"name": "gate_error",
"unit": "",
"value": 0.01902233362337591
},
{
"date": "2021-07-02T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 1144.888888888889
}
],
"qubits": [
2,
1
]
},
{
"gate": "cx",
"name": "cx0_1",
"parameters": [
{
"date": "2021-07-05T07:27:21Z",
"name": "gate_error",
"unit": "",
"value": 0.006104727490691075
},
{
"date": "2021-07-02T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 320
}
],
"qubits": [
0,
1
]
},
{
"gate": "cx",
"name": "cx1_0",
"parameters": [
{
"date": "2021-07-05T07:27:21Z",
"name": "gate_error",
"unit": "",
"value": 0.006104727490691075
},
{
"date": "2021-07-02T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 355.55555555555554
}
],
"qubits": [
1,
0
]
},
{
"gate": "reset",
"name": "reset0",
"parameters": [
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 3520
}
],
"qubits": [
0
]
},
{
"gate": "reset",
"name": "reset1",
"parameters": [
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 3520
}
],
"qubits": [
1
]
},
{
"gate": "reset",
"name": "reset2",
"parameters": [
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 3520
}
],
"qubits": [
2
]
},
{
"gate": "reset",
"name": "reset3",
"parameters": [
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 3520
}
],
"qubits": [
3
]
},
{
"gate": "reset",
"name": "reset4",
"parameters": [
{
"date": "2021-07-05T12:18:02Z",
"name": "gate_length",
"unit": "ns",
"value": 3520
}
],
"qubits": [
4
]
}
],
"general": [
{
"date": "2021-07-05T12:18:02Z",
"name": "jq_01",
"unit": "GHz",
"value": 0.0013372089376152759
},
{
"date": "2021-07-05T12:18:02Z",
"name": "zz_01",
"unit": "GHz",
"value": -0.00003637728507512319
},
{
"date": "2021-07-05T12:18:02Z",
"name": "jq_12",
"unit": "GHz",
"value": 0.0013171912974961383
},
{
"date": "2021-07-05T12:18:02Z",
"name": "zz_12",
"unit": "GHz",
"value": -0.000052536503588451545
},
{
"date": "2021-07-05T12:18:02Z",
"name": "jq_23",
"unit": "GHz",
"value": 0.0016605412148178267
},
{
"date": "2021-07-05T12:18:02Z",
"name": "zz_23",
"unit": "GHz",
"value": -0.0000819573944865251
},
{
"date": "2021-07-05T12:18:02Z",
"name": "jq_34",
"unit": "GHz",
"value": 0.0015015244269155484
},
{
"date": "2021-07-05T12:18:02Z",
"name": "zz_34",
"unit": "GHz",
"value": -0.00008449922279710206
}
],
"last_update_date": "2021-07-05T12:52:19Z",
"qubits": [
[
{
"date": "2021-07-05T06:41:57Z",
"name": "T1",
"unit": "us",
"value": 97.03598857550222
},
{
"date": "2021-07-05T06:05:06Z",
"name": "T2",
"unit": "us",
"value": 66.65681862753586
},
{
"date": "2021-07-05T12:18:02Z",
"name": "frequency",
"unit": "GHz",
"value": 4.968701124164304
},
{
"date": "2021-07-05T12:18:02Z",
"name": "anharmonicity",
"unit": "GHz",
"value": -0.3376275901130698
},
{
"date": "2021-07-05T05:29:29Z",
"name": "readout_error",
"unit": "",
"value": 0.0232
},
{
"date": "2021-07-05T05:29:29Z",
"name": "prob_meas0_prep1",
"unit": "",
"value": 0.031399999999999983
},
{
"date": "2021-07-05T05:29:29Z",
"name": "prob_meas1_prep0",
"unit": "",
"value": 0.015
},
{
"date": "2021-07-05T05:29:29Z",
"name": "readout_length",
"unit": "ns",
"value": 3022.222222222222
}
],
[
{
"date": "2021-07-05T06:50:29Z",
"name": "T1",
"unit": "us",
"value": 105.20382514288175
},
{
"date": "2021-07-05T06:42:02Z",
"name": "T2",
"unit": "us",
"value": 87.48573724157141
},
{
"date": "2021-07-05T12:18:02Z",
"name": "frequency",
"unit": "GHz",
"value": 4.770103698982546
},
{
"date": "2021-07-05T12:18:02Z",
"name": "anharmonicity",
"unit": "GHz",
"value": -0.32741865550549987
},
{
"date": "2021-07-05T05:29:29Z",
"name": "readout_error",
"unit": "",
"value": 0.03620000000000001
},
{
"date": "2021-07-05T05:29:29Z",
"name": "prob_meas0_prep1",
"unit": "",
"value": 0.040000000000000036
},
{
"date": "2021-07-05T05:29:29Z",
"name": "prob_meas1_prep0",
"unit": "",
"value": 0.0324
},
{
"date": "2021-07-05T05:29:29Z",
"name": "readout_length",
"unit": "ns",
"value": 3022.222222222222
}
],
[
{
"date": "2021-07-05T06:41:57Z",
"name": "T1",
"unit": "us",
"value": 64.82252288673146
},
{
"date": "2021-07-05T06:05:06Z",
"name": "T2",
"unit": "us",
"value": 72.52724000942999
},
{
"date": "2021-07-05T12:18:02Z",
"name": "frequency",
"unit": "GHz",
"value": 5.0151628503963455
},
{
"date": "2021-07-05T12:18:02Z",
"name": "anharmonicity",
"unit": "GHz",
"value": -0.3377245211681405
},
{
"date": "2021-07-05T05:29:29Z",
"name": "readout_error",
"unit": "",
"value": 0.027200000000000002
},
{
"date": "2021-07-05T05:29:29Z",
"name": "prob_meas0_prep1",
"unit": "",
"value": 0.03620000000000001
},
{
"date": "2021-07-05T05:29:29Z",
"name": "prob_meas1_prep0",
"unit": "",
"value": 0.0182
},
{
"date": "2021-07-05T05:29:29Z",
"name": "readout_length",
"unit": "ns",
"value": 3022.222222222222
}
],
[
{
"date": "2021-07-05T06:50:29Z",
"name": "T1",
"unit": "us",
"value": 104.84874439033118
},
{
"date": "2021-07-05T06:42:02Z",
"name": "T2",
"unit": "us",
"value": 129.73557126090668
},
{
"date": "2021-07-05T12:18:02Z",
"name": "frequency",
"unit": "GHz",
"value": 5.259275396316249
},
{
"date": "2021-07-05T12:18:02Z",
"name": "anharmonicity",
"unit": "GHz",
"value": -0.332820867284168
},
{
"date": "2021-07-05T05:29:29Z",
"name": "readout_error",
"unit": "",
"value": 0.01970000000000005
},
{
"date": "2021-07-05T05:29:29Z",
"name": "prob_meas0_prep1",
"unit": "",
"value": 0.02980000000000005
},
{
"date": "2021-07-05T05:29:29Z",
"name": "prob_meas1_prep0",
"unit": "",
"value": 0.0096
},
{
"date": "2021-07-05T05:29:29Z",
"name": "readout_length",
"unit": "ns",
"value": 3022.222222222222
}
],
[
{
"date": "2021-07-05T06:41:57Z",
"name": "T1",
"unit": "us",
"value": 64.22956352722753
},
{
"date": "2021-07-05T06:05:06Z",
"name": "T2",
"unit": "us",
"value": 69.23261463653839
},
{
"date": "2021-07-05T12:18:02Z",
"name": "frequency",
"unit": "GHz",
"value": 4.997550159631257
},
{
"date": "2021-07-05T12:18:02Z",
"name": "anharmonicity",
"unit": "GHz",
"value": -0.33936095018213536
},
{
"date": "2021-07-05T05:29:29Z",
"name": "readout_error",
"unit": "",
"value": 0.023600000000000065
},
{
"date": "2021-07-05T05:29:29Z",
"name": "prob_meas0_prep1",
"unit": "",
"value": 0.03180000000000005
},
{
"date": "2021-07-05T05:29:29Z",
"name": "prob_meas1_prep0",
"unit": "",
"value": 0.0154
},
{
"date": "2021-07-05T05:29:29Z",
"name": "readout_length",
"unit": "ns",
"value": 3022.222222222222
}
]
]
}{
"type": "object",
"properties": {
"backend_name": {
"type": "string",
"description": "백엔드 이름",
"pattern": "^[a-zA-Z0-9_]*$",
"minLength": 1,
"maxLength": 64
},
"backend_version": {
"type": "string",
"description": "형식의 백엔드 버전 X.X.X",
"pattern": "^[0-9]+.[0-9]+.[0-9]+$",
"minLength": 5,
"maxLength": 16
},
"gates": {
"description": "시스템 게이트 매개변수",
"minItems": 0,
"maxItems": 2147483647,
"type": "array",
"items": {
"type": "object",
"properties": {
"gate": {
"type": "string",
"description": "이러한 매개 변수의 게이트 이름",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-zA-Z0-9_]*$"
},
"parameters": {
"description": "이 큐비트에 대한 이 게이트의 파라미터는 다음과 같습니다",
"minItems": 1,
"maxItems": 2147483647,
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"format": "date-time",
"type": "string",
"description": "매개변수 날짜",
"minLength": 24,
"maxLength": 24
},
"name": {
"type": "string",
"description": "매개변수의 이름",
"minLength": 1,
"maxLength": 64
},
"unit": {
"type": "string",
"description": "매개변수의 단위",
"minLength": 0,
"maxLength": 64
},
"value": {
"type": "number",
"description": "매개변수의 값"
}
},
"required": [
"date",
"name",
"unit",
"value"
]
}
},
"qubits": {
"description": "이러한 매개 변수에 대한 큐비트",
"minItems": 1,
"maxItems": 2147483647,
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"gate",
"parameters",
"qubits"
]
}
},
"general": {
"description": "일반 시스템 매개변수",
"minItems": 0,
"maxItems": 2147483647,
"type": "array",
"items": {
"type": "string"
}
},
"last_update_date": {
"format": "date-time",
"type": "string",
"description": "숙소가 마지막으로 업데이트된 날짜/시간입니다.",
"minLength": 20,
"maxLength": 20
},
"qubits": {
"type": "array",
"items": {
"description": "시스템 큐비트 매개변수",
"minItems": 1,
"maxItems": 2147483647,
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"format": "date-time",
"type": "string",
"description": "매개변수 날짜",
"minLength": 24,
"maxLength": 24
},
"name": {
"type": "string",
"description": "매개변수의 이름",
"minLength": 1,
"maxLength": 64
},
"unit": {
"type": "string",
"description": "매개변수의 단위",
"minLength": 0,
"maxLength": 64
},
"value": {
"type": "number",
"description": "매개변수의 값"
}
},
"required": [
"date",
"name",
"unit",
"value"
]
}
}
}
},
"required": [
"backend_name",
"backend_version",
"gates",
"general",
"last_update_date",
"qubits"
]
}백엔드 상태 보기
지정된 백엔드 ID의 상태를 반환합니다.
권한 부여
이 메소드를 호출하려면 다음 조치를 포함하는 하나 이상의 IAM 액세스 역할이 지정되어야 합니다. 다음으로 이동하여 액세스 권한을 확인할 수 있습니다. Users > User > Access
quantum-computing.device.read
감사
이 메소드를 호출하면 다음과 같은 감사 이벤트가 생성됩니다.
quantum-computing.device.read
입력
이름, 유형 | 설명 |
|---|---|
id 필수 string | 사용 가능한 백엔드의 식별자 |
인스턴스가 eu-de 리전에 있는 경우, 대신 URL 를 사용하세요: https://eu-de.quantum.cloud.ibm.com/api/v1/backends/{id}/status
curl -X GET \
'https://quantum.cloud.ibm.com/api/v1/backends/{id}/status' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer YOUR-TOKEN' \
-H 'Service-CRN: YOUR-SERVICE-CRN' \
-H 'IBM-API-Version: 2024-01-01' 인스턴스가 eu-de 리전에 있는 경우, 대신 URL 를 사용하세요: https://eu-de.quantum.cloud.ibm.com/api/v1/backends/{id}/status
import requests
response = requests.request(
"GET",
"https://quantum.cloud.ibm.com/api/v1/backends/{id}/status",
headers={
"Accept": "application/json",
"IBM-API-Version": "2024-01-01",
"Authorization": "Bearer YOUR-TOKEN",
"Service-CRN": "YOUR-SERVICE-CRN"
},
)
print(response.json())출력
상태 코드 | 설명 |
|---|---|
| 200 | 확인 |
{
"state": true,
"status": "active",
"message": "available",
"length_queue": 14,
"backend_version": "1.3.24"
}{
"title": "BackendStatusResponse",
"type": "object",
"description": "백엔드 상태 응답",
"additionalProperties": false,
"required": [
"length_queue"
],
"properties": {
"state": {
"type": "boolean",
"description": "백엔드 상태"
},
"status": {
"type": "string",
"description": "백엔드 상태"
},
"message": {
"type": "string",
"description": "백엔드 상태에 대한 설명"
},
"length_queue": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 2147483647,
"description": "백엔드에 대한 대기열 길이"
},
"backend_version": {
"type": "string",
"description": "백엔드 버전"
}
}
}