36 lines
1.5 KiB
Plaintext
36 lines
1.5 KiB
Plaintext
---
|
||
title: InstructionProperties (dev version)
|
||
description: API reference for qiskit.transpiler.InstructionProperties in the dev version of qiskit
|
||
in_page_toc_min_heading_level: 1
|
||
python_api_type: class
|
||
python_api_name: qiskit.transpiler.InstructionProperties
|
||
---
|
||
|
||
# InstructionProperties
|
||
|
||
<Class id="qiskit.transpiler.InstructionProperties" isDedicatedPage={true} github="https://github.com/Qiskit/qiskit/tree/main/qiskit/transpiler/target.py#L53-L90" signature="qiskit.transpiler.InstructionProperties(duration=None, error=None, *args, **kwargs)" modifiers="class">
|
||
Bases: `BaseInstructionProperties`
|
||
|
||
A representation of the properties of a gate implementation.
|
||
|
||
This class provides the optional properties that a backend can provide about an instruction. These represent the set that the transpiler can currently work with if present. However, if your backend provides additional properties for instructions you should subclass this to add additional custom attributes for those custom/additional properties by the backend.
|
||
|
||
Create a new `InstructionProperties` object
|
||
|
||
**Parameters**
|
||
|
||
* **duration** – The duration, in seconds, of the instruction on the specified set of qubits
|
||
* **error** – The average error rate for the instruction on the specified set of qubits.
|
||
|
||
## Attributes
|
||
|
||
### duration
|
||
|
||
<Attribute id="qiskit.transpiler.InstructionProperties.duration" />
|
||
|
||
### error
|
||
|
||
<Attribute id="qiskit.transpiler.InstructionProperties.error" />
|
||
</Class>
|
||
|