-
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.
Co-authored-by: Coull <[email protected]>
- Loading branch information
Showing
13 changed files
with
1,193 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# 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 braket.device_schema.iqm.iqm_device_capabilities_v1 import IqmDeviceCapabilities # noqa: F401 | ||
from braket.device_schema.iqm.iqm_device_parameters_v1 import IqmDeviceParameters # noqa: F401 | ||
from braket.device_schema.iqm.iqm_provider_properties_v1 import IqmProviderProperties # noqa: F401 |
56 changes: 56 additions & 0 deletions
56
src/braket/device_schema/iqm/iqm_device_capabilities_v1.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,56 @@ | ||
# 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.iqm.iqm_provider_properties_v1 import IqmProviderProperties | ||
from braket.device_schema.openqasm_device_action_properties import OpenQASMDeviceActionProperties | ||
from braket.device_schema.standardized_gate_model_qpu_device_properties_v1 import ( | ||
StandardizedGateModelQpuDeviceProperties, | ||
) | ||
from braket.schema_common.schema_base import BraketSchemaBase | ||
from braket.schema_common.schema_header import BraketSchemaHeader | ||
|
||
|
||
class IqmDeviceCapabilities(BraketSchemaBase, DeviceCapabilities): | ||
""" | ||
This defines the capabilities of an IQM device. | ||
Attributes: | ||
action(Dict[Union[DeviceActionType, str], | ||
Union[OpenQASMDeviceActionProperties]]): Actions that an IQM device can support | ||
paradigm(GateModelQpuParadigmProperties): Paradigm properties | ||
provider(Optional[IqmProviderProperties]): IQM provider specific properties | ||
standardized | ||
(StandardizedGateModelQpuDeviceProperties): Braket standarized device | ||
properties for IQM | ||
""" | ||
|
||
_PROGRAM_HEADER = BraketSchemaHeader( | ||
name="braket.device_schema.iqm.iqm_device_capabilities", version="1" | ||
) | ||
braketSchemaHeader: BraketSchemaHeader = Field(default=_PROGRAM_HEADER, const=_PROGRAM_HEADER) | ||
action: Dict[ | ||
Union[DeviceActionType, str], | ||
Union[OpenQASMDeviceActionProperties], | ||
] | ||
paradigm: GateModelQpuParadigmProperties | ||
provider: Optional[IqmProviderProperties] | ||
standardized: Optional[StandardizedGateModelQpuDeviceProperties] |
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,33 @@ | ||
# 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 pydantic.v1 import Field | ||
|
||
from braket.device_schema.gate_model_parameters_v1 import GateModelParameters | ||
from braket.schema_common.schema_base import BraketSchemaBase | ||
from braket.schema_common.schema_header import BraketSchemaHeader | ||
|
||
|
||
class IqmDeviceParameters(BraketSchemaBase): | ||
""" | ||
This defines the parameters common to all the IQM devices. | ||
Attributes: | ||
paradigmParameters: Parameters that are common to gatemodel paradigm | ||
""" | ||
|
||
_PROGRAM_HEADER = BraketSchemaHeader( | ||
name="braket.device_schema.iqm.iqm_device_parameters", version="1" | ||
) | ||
braketSchemaHeader: BraketSchemaHeader = Field(default=_PROGRAM_HEADER, const=_PROGRAM_HEADER) | ||
paradigmParameters: GateModelParameters |
41 changes: 41 additions & 0 deletions
41
src/braket/device_schema/iqm/iqm_provider_properties_v1.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,41 @@ | ||
# 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, TypeVar, Union | ||
|
||
from pydantic.v1 import Field | ||
|
||
from braket.schema_common.schema_base import BraketSchemaBase | ||
from braket.schema_common.schema_header import BraketSchemaHeader | ||
|
||
GateFidelityType = TypeVar("GateFidelityType", bound=Dict[str, Union[str, float]]) | ||
OneQubitType = TypeVar("OneQubitType", bound=Union[float, List[GateFidelityType]]) | ||
TwoQubitType = TypeVar("TwoQubitType", bound=Dict[str, Union[float, Dict[str, int]]]) | ||
|
||
QubitType = TypeVar("QubitType", bound=Dict[str, Union[OneQubitType, TwoQubitType]]) | ||
|
||
|
||
class IqmProviderProperties(BraketSchemaBase): | ||
""" | ||
This defines the properties common to all the IQM devices. | ||
Attributes: | ||
properties (Dict[str, Dict[str, QubitType]]): Basic specifications for | ||
the device, such as gate fidelities and coherence times. | ||
""" | ||
|
||
_PROGRAM_HEADER = BraketSchemaHeader( | ||
name="braket.device_schema.iqm.iqm_provider_properties", version="1" | ||
) | ||
braketSchemaHeader: BraketSchemaHeader = Field(default=_PROGRAM_HEADER, const=_PROGRAM_HEADER) | ||
properties: Dict[str, Dict[str, QubitType]] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# 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 pydantic.v1 import Field, constr | ||
|
||
from braket.schema_common import BraketSchemaBase, BraketSchemaHeader | ||
|
||
|
||
class IqmMetadata(BraketSchemaBase): | ||
""" | ||
The IQM metadata result schema. | ||
Attributes: | ||
braketSchemaHeader (BraketSchemaHeader): Schema header. | ||
Users do not need to set this value. Only default is allowed. | ||
compiledProgram (str): The program executed on the QPU. | ||
""" | ||
|
||
_IQM_METADATA_HEADER = BraketSchemaHeader(name="braket.task_result.iqm_metadata", version="1") | ||
braketSchemaHeader: BraketSchemaHeader = Field( | ||
default=_IQM_METADATA_HEADER, const=_IQM_METADATA_HEADER | ||
) | ||
|
||
compiledProgram: constr(min_length=2) |
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
Oops, something went wrong.