SaveStatevector

class SaveStatevector(num_qubits, label='statevector', pershot=False, conditional=False)[source]

Save statevector

Create new instruction to save the simulator statevector.

Parameters:
  • num_qubits (int) – the number of qubits

  • label (str) – the key for retrieving saved data from results.

  • pershot (bool) – if True save a list of statevectors for each shot of the simulation rather than a single statevector [Default: False].

  • conditional (bool) – if True save data conditional on the current classical register values [Default: False].

Note

This save instruction must always be performed on the full width of qubits in a circuit, otherwise an exception will be raised during simulation.

Attributes

SaveStatevector.condition_bits

Get Clbits in condition.

SaveStatevector.decompositions

Get the decompositions of the instruction from the SessionEquivalenceLibrary.

SaveStatevector.definition

Return definition in terms of other basic gates.

SaveStatevector.duration

Get the duration.

SaveStatevector.label

Return instruction label

SaveStatevector.name

Return the name.

SaveStatevector.num_clbits

Return the number of clbits.

SaveStatevector.num_qubits

Return the number of qubits.

SaveStatevector.params

return instruction params.

SaveStatevector.unit

Get the time unit of duration.

Methods

SaveStatevector.add_decomposition(decomposition)

Add a decomposition of the instruction to the SessionEquivalenceLibrary.

SaveStatevector.assemble()

Return the QasmQobjInstruction for the intructions.

SaveStatevector.broadcast_arguments(qargs, cargs)

Validation of the arguments.

SaveStatevector.c_if(classical, val)

Set a classical equality condition on this instruction between the register or cbit classical and value val.

SaveStatevector.copy([name])

Copy of the instruction.

SaveStatevector.inverse()

Special case.

SaveStatevector.is_parameterized()

Return True .IFF.

SaveStatevector.qasm()

Return a default OpenQASM string for the instruction.

SaveStatevector.repeat(n)

Creates an instruction with gate repeated n amount of times.

SaveStatevector.reverse_ops()

For a composite instruction, reverse the order of sub-instructions.

SaveStatevector.soft_compare(other)

Soft comparison between gates.

SaveStatevector.validate_parameter(parameter)

Instruction parameters has no validation or normalization.