-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add rigetti device properties v2 schemas
- Loading branch information
Coull
committed
Jan 14, 2025
1 parent
70f8622
commit 65c6bfc
Showing
6 changed files
with
582 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
125 changes: 125 additions & 0 deletions
125
src/braket/device_schema/rigetti/rigetti_device_capabilities_v2.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"). You | ||
# may not use this file except in compliance with the License. A copy of | ||
# the License is located at | ||
# | ||
# http://aws.amazon.com/apache2.0/ | ||
# | ||
# or in the "license" file accompanying this file. This file is | ||
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF | ||
# ANY KIND, either express or implied. See the License for the specific | ||
# language governing permissions and limitations under the License. | ||
|
||
from typing import Dict, Optional, Union | ||
|
||
from pydantic.v1 import Field | ||
|
||
from braket.device_schema.device_action_properties import DeviceActionType | ||
from braket.device_schema.device_capabilities import DeviceCapabilities | ||
from braket.device_schema.gate_model_qpu_paradigm_properties_v1 import ( | ||
GateModelQpuParadigmProperties, | ||
) | ||
from braket.device_schema.jaqcd_device_action_properties import JaqcdDeviceActionProperties | ||
from braket.device_schema.openqasm_device_action_properties import OpenQASMDeviceActionProperties | ||
from braket.device_schema.pulse.pulse_device_action_properties_v1 import PulseDeviceActionProperties | ||
from braket.device_schema.rigetti.rigetti_provider_properties_v2 import RigettiProviderProperties | ||
from braket.device_schema.standardized_gate_model_qpu_device_properties_v1 import ( | ||
StandardizedGateModelQpuDeviceProperties, | ||
) | ||
from braket.schema_common import BraketSchemaBase, BraketSchemaHeader | ||
|
||
|
||
class RigettiDeviceCapabilities(BraketSchemaBase, DeviceCapabilities): | ||
""" | ||
This defines the capabilities of a Rigetti device. | ||
Attributes: | ||
action(Dict[Union[DeviceActionType, str], | ||
Union[OpenQASMDeviceActionProperties, JaqcdDeviceActionProperties]]): Actions that a | ||
Rigetti device can support | ||
paradigm(GateModelQpuParadigmProperties): Paradigm properties of a Rigetti | ||
provider(Optional[RigettiProviderProperties]): Rigetti provider specific properties | ||
standardized | ||
(StandardizedGateModelQpuDeviceProperties): Braket standarized device | ||
properties for Rigetti | ||
pulse(PulseDeviceActionProperties): Hardware device details for pulse control | ||
Examples: | ||
>>> import json | ||
>>> input_json = { | ||
... "braketSchemaHeader": { | ||
... "name": "braket.device_schema.rigetti.rigetti_device_capabilities", | ||
... "version": "2", | ||
... }, | ||
... "service": { | ||
... "braketSchemaHeader": { | ||
... "name": "braket.device_schema.device_service_properties", | ||
... "version": "1", | ||
... }, | ||
... "executionWindows": [ | ||
... { | ||
... "executionDay": "Everyday", | ||
... "windowStartHour": "09:00", | ||
... "windowEndHour": "10:00", | ||
... } | ||
... ], | ||
... "shotsRange": [1, 10], | ||
... "deviceCost": { | ||
... "price": 0.25, | ||
... "unit": "minute" | ||
... }, | ||
... "deviceDocumentation": { | ||
... "imageUrl": "image_url", | ||
... "summary": "Summary on the device", | ||
... "externalDocumentationUrl": "exter doc link", | ||
... }, | ||
... "deviceLocation": "us-west-1", | ||
... "updatedAt": "2020-06-16T19:28:02.869136" | ||
... }, | ||
... "action": { | ||
... "braket.ir.jaqcd.program": { | ||
... "actionType": "braket.ir.jaqcd.program", | ||
... "version": ["1"], | ||
... "supportedOperations": ["x", "y"], | ||
... "supportedResultTypes": [{ | ||
... "name": "resultType1", | ||
... "observables": ["observable1"], | ||
... "minShots": 0, | ||
... "maxShots": 4, | ||
... }], | ||
... } | ||
... }, | ||
... "paradigm": { | ||
... "braketSchemaHeader": { | ||
... "name": "braket.device_schema.gate_model_qpu_paradigm_properties", | ||
... "version": "1", | ||
... }, | ||
... "qubitCount": 32, | ||
... "nativeGateSet": ["ccnot", "cy"], | ||
... "connectivity": { | ||
... "fullyConnected": False, | ||
... "connectivityGraph": {"1": ["2", "3"]}, | ||
... }, | ||
... }, | ||
... "deviceParameters": {RigettiDeviceParameters.schema_json()}, | ||
... "standardized": \ | ||
... {StandardizedGateModelQpuDeviceProperties.schema_json()}, | ||
... "pulse": {PulseDeviceActionProperties.schema_json()}, | ||
... } | ||
>>> RigettiDeviceCapabilities.parse_raw_schema(json.dumps(input_json)) | ||
""" | ||
|
||
_PROGRAM_HEADER = BraketSchemaHeader( | ||
name="braket.device_schema.rigetti.rigetti_device_capabilities", version="2" | ||
) | ||
braketSchemaHeader: BraketSchemaHeader = Field(default=_PROGRAM_HEADER, const=_PROGRAM_HEADER) | ||
action: Dict[ | ||
Union[DeviceActionType, str], | ||
Union[OpenQASMDeviceActionProperties, JaqcdDeviceActionProperties], | ||
] | ||
paradigm: GateModelQpuParadigmProperties | ||
provider: Optional[RigettiProviderProperties] | ||
standardized: Optional[StandardizedGateModelQpuDeviceProperties] | ||
pulse: Optional[PulseDeviceActionProperties] |
159 changes: 159 additions & 0 deletions
159
src/braket/device_schema/rigetti/rigetti_provider_properties_v2.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"). You | ||
# may not use this file except in compliance with the License. A copy of | ||
# the License is located at | ||
# | ||
# http://aws.amazon.com/apache2.0/ | ||
# | ||
# or in the "license" file accompanying this file. This file is | ||
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF | ||
# ANY KIND, either express or implied. See the License for the specific | ||
# language governing permissions and limitations under the License. | ||
|
||
from typing import Dict, List, Union | ||
|
||
from pydantic.v1 import Field | ||
|
||
from braket.schema_common import BraketSchemaBase, BraketSchemaHeader | ||
|
||
|
||
class RigettiProviderProperties(BraketSchemaBase): | ||
""" | ||
This defines the parameters common to all Rigetti devices. | ||
Attributes: | ||
specs (Dict[str, Union[str, List, Dict[str, Union[str,List]]]): Basic specifications for the device, | ||
such as gate fidelities and coherence times. More details at | ||
https://docs.api.qcs.rigetti.com/#operation/GetInstructionSetArchitecture | ||
Examples: | ||
>>> import json | ||
>>> input_json = { | ||
... "braketSchemaHeader": { | ||
... "name": "braket.device_schema.rigetti.rigetti_provider_properties", | ||
... "version": "2", | ||
... }, | ||
... "specs": { | ||
... "instructionSetArchitectures": [ | ||
... { | ||
... "architecture": { | ||
... "edges": [ | ||
... { | ||
... "node_ids": [ | ||
... 0, | ||
... 0 | ||
... ] | ||
... } | ||
... ], | ||
... "family": "None", | ||
... "nodes": [ | ||
... { | ||
... "node_id": 0 | ||
... } | ||
... ] | ||
... }, | ||
... "benchmarks": [ | ||
... { | ||
... "characteristics": [ | ||
... { | ||
... "error": 0, | ||
... "name": "string", | ||
... "node_ids": [ | ||
... 0 | ||
... ], | ||
... "parameter_values": [ | ||
... 0 | ||
... ], | ||
... "timestamp": "2025-01-03T00:13:25Z", | ||
... "value": 0 | ||
... } | ||
... ], | ||
... "name": "string", | ||
... "node_count": 0, | ||
... "parameters": [ | ||
... { | ||
... "name": "string" | ||
... } | ||
... ], | ||
... "sites": [ | ||
... { | ||
... "characteristics": [ | ||
... { | ||
... "error": 0, | ||
... "name": "string", | ||
... "node_ids": [ | ||
... 0 | ||
... ], | ||
... "parameter_values": [ | ||
... 0 | ||
... ], | ||
... "timestamp": "2025-01-03T00:13:25Z", | ||
... "value": 0 | ||
... } | ||
... ], | ||
... "node_ids": [ | ||
... 0 | ||
... ] | ||
... } | ||
... ] | ||
... } | ||
... ], | ||
... "instructions": [ | ||
... { | ||
... "characteristics": [ | ||
... { | ||
... "error": 0, | ||
... "name": "string", | ||
... "node_ids": [ | ||
... 0 | ||
... ], | ||
... "parameter_values": [ | ||
... 0 | ||
... ], | ||
... "timestamp": "2025-01-03T00:13:25Z", | ||
... "value": 0 | ||
... } | ||
... ], | ||
... "name": "string", | ||
... "node_count": 0, | ||
... "parameters": [ | ||
... { | ||
... "name": "string" | ||
... } | ||
... ], | ||
... "sites": [ | ||
... { | ||
... "characteristics": [ | ||
... { | ||
... "error": 0, | ||
... "name": "string", | ||
... "node_ids": [ | ||
... 0 | ||
... ], | ||
... "parameter_values": [ | ||
... 0 | ||
... ], | ||
... "timestamp": "2025-01-03T00:13:25Z", | ||
... "value": 0 | ||
... } | ||
... ], | ||
... "node_ids": [ | ||
... 0 | ||
... ] | ||
... } | ||
... ] | ||
... } | ||
... ], | ||
... "name": "string" | ||
... } | ||
... ], | ||
... } | ||
>>> RigettiProviderProperties.parse_raw_schema(json.dumps(input_json)) | ||
""" | ||
|
||
_PROGRAM_HEADER = BraketSchemaHeader( | ||
name="braket.device_schema.rigetti.rigetti_provider_properties", version="2" | ||
) | ||
braketSchemaHeader: BraketSchemaHeader = Field(default=_PROGRAM_HEADER, const=_PROGRAM_HEADER) | ||
specs: Dict[str, Union[str, List, Dict[str, Union[str, List]]]] |
Oops, something went wrong.