# 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.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.openqasm_program_set_device_action_properties import (
OpenQASMProgramSetDeviceActionProperties,
)
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
[docs]
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[
DeviceActionType | str,
OpenQASMDeviceActionProperties | OpenQASMProgramSetDeviceActionProperties,
]
paradigm: GateModelQpuParadigmProperties
provider: IqmProviderProperties | None
standardized: StandardizedGateModelQpuDeviceProperties | None