resources#
Common resources for use with the quantify_scheduler.
Module Contents#
Classes#
A resource corresponds to a physical resource such as a port or a clock. |
|
The ClockResource corresponds to a physical clock used to modulate pulses. |
|
Global identity for a virtual baseband clock. |
|
Global identity for a virtual digital clock. |
- class Resource(name: str)[source]#
Bases:
collections.UserDict
A resource corresponds to a physical resource such as a port or a clock.
JSON schema for a quantify resource.
type
object
properties
name
Name of the resource.
type
string
type
Type of the resource, this property can be used by compilation steps.
type
string
additionalProperties
True
- Parameters:
name – The resource name.
- static is_valid(operation: Resource) bool [source]#
Validates the Resource against the schemas/resource.json fastjsonschema.
- Parameters:
operation – The operation to validate.
- Raises:
fastjsonschema.JsonSchemaException – if the instance is invalid
fastjsonschema.JsonSchemaDefinitionException – if the schema itself is invalid
- Returns:
If the validation was successful.
- Return type:
- class ClockResource(name: str, freq: float, phase: float = 0)[source]#
Bases:
Resource
The ClockResource corresponds to a physical clock used to modulate pulses.
- Parameters:
name – the name of this clock
freq – the frequency of the clock in Hz
phase – the starting phase of the clock in deg