|
Sequential Quantum Gate Decomposer
v1.9.6
Powerful decomposition of general unitarias into one- and two-qubit gates gates
|
A class responsible for grouping two-qubit (CNOT,CZ,CH) and one-qubit gates into layers. More...
#include <Gates_block.h>

Public Member Functions | |
| void | add_adaptive (int target_qbit, int control_qbit) |
| Append a Adaptive gate to the list of gates. More... | |
| void | add_adaptive_to_front (int target_qbit, int control_qbit) |
| Add a Adaptive gate to the front of the list of gates. More... | |
| void | add_ccx (int target_qbit, const std::vector< int > &control_qbits) |
| Append a CCX gate (i.e. More... | |
| void | add_ccx_to_front (int target_qbit, const std::vector< int > &control_qbits) |
| Add a CCX gate (i.e. More... | |
| void | add_ch (int target_qbit, int control_qbit) |
| Append a CH gate (i.e. More... | |
| void | add_ch_to_front (int target_qbit, int control_qbit) |
| Add a CH gate (i.e. More... | |
| void | add_child (Gate *child) |
| Call to add a child gate to the current gate. More... | |
| void | add_cnot (int target_qbit, int control_qbit) |
| Append a CNOT gate gate to the list of gates. More... | |
| void | add_cnot_to_front (int target_qbit, int control_qbit) |
| Add a C_NOT gate gate to the front of the list of gates. More... | |
| void | add_cp (int target_qbit, int control_qbit) |
| Append a CRY gate to the list of gates. More... | |
| void | add_cp_to_front (int target_qbit, int control_qbit) |
| Add a CRY gate to the front of the list of gates. More... | |
| void | add_cr (int target_qbit, int control_qbit) |
| Append a CR gate to the list of gates. More... | |
| void | add_cr_to_front (int target_qbit, int control_qbit) |
| Add a CR gate to the front of the list of gates. More... | |
| void | add_crot (int target_qbit, int control_qbit) |
| Append a CROT gate gate to the list of gates. More... | |
| void | add_crot_to_front (int target_qbit, int control_qbit) |
| Add a CROT gate gate to the front of the list of gates. More... | |
| void | add_crx (int target_qbit, int control_qbit) |
| Append a CRY gate to the list of gates. More... | |
| void | add_crx_to_front (int target_qbit, int control_qbit) |
| Add a CRY gate to the front of the list of gates. More... | |
| void | add_cry (int target_qbit, int control_qbit) |
| Append a CRY gate to the list of gates. More... | |
| void | add_cry_to_front (int target_qbit, int control_qbit) |
| Add a CRY gate to the front of the list of gates. More... | |
| void | add_crz (int target_qbit, int control_qbit) |
| Append a CRY gate to the list of gates. More... | |
| void | add_crz_to_front (int target_qbit, int control_qbit) |
| Add a CRY gate to the front of the list of gates. More... | |
| void | add_cswap (const std::vector< int > &target_qbits, const std::vector< int > &control_qbits) |
| Append a CSWAP gate (Controlled SWAP) to the list of gates. More... | |
| void | add_cswap_to_front (const std::vector< int > &target_qbits, const std::vector< int > &control_qbits) |
| Add a CSWAP gate (Controlled SWAP) to the front of the list of gates. More... | |
| void | add_cu (int target_qbit, int control_qbit) |
| Append a CU gate (i.e. More... | |
| void | add_cu_to_front (int target_qbit, int control_qbit) |
| Add a CU gate (i.e. More... | |
| void | add_cz (int target_qbit, int control_qbit) |
| Append a CZ gate gate to the list of gates. More... | |
| void | add_cz_to_front (int target_qbit, int control_qbit) |
| Add a CZ gate gate to the front of the list of gates. More... | |
| void | add_gate (Gate *gate) |
| Append a general gate to the list of gates. More... | |
| void | add_gate_nums (std::map< std::string, int > &gate_nums) |
| Call to add the number of the individual gate types in the circuit to the map given in the argument. More... | |
| void | add_gate_to_front (Gate *gate) |
| Add an gate to the front of the list of gates. More... | |
| void | add_gates (std::vector< Gate *> gates_in) |
| Append a list of gates to the list of gates. More... | |
| void | add_gates_to_front (std::vector< Gate *> gates_in) |
| Add an array of gates to the front of the list of gates. More... | |
| void | add_general_operation (const Matrix &operation_mtx, const std::vector< int > &target_qbits=std::vector< int >(), const std::vector< int > &control_qbits=std::vector< int >()) |
| Append a GENERAL_OPERATION gate with an explicitly provided matrix. More... | |
| void | add_h (int target_qbit) |
| Append a Hadamard gate to the list of gates. More... | |
| void | add_h_to_front (int target_qbit) |
| Add a Hadamard gate to the front of the list of gates. More... | |
| void | add_parent (Gate *parent) |
| Call to add a parent gate to the current gate. More... | |
| void | add_r (int target_qbit) |
| Append a R gate to the list of gates. More... | |
| void | add_r_to_front (int target_qbit) |
| Add a R gate to the front of the list of gates. More... | |
| void | add_rx (int target_qbit) |
| Append a RX gate to the list of gates. More... | |
| void | add_rx_to_front (int target_qbit) |
| Add a RX gate to the front of the list of gates. More... | |
| void | add_rxx (std::vector< int > target_qbits) |
| Append a RXX gate to the list of gates. More... | |
| void | add_rxx_to_front (std::vector< int > target_qbits) |
| Add a RXX gate to the front of the list of gates. More... | |
| void | add_ry (int target_qbit) |
| Append a RY gate to the list of gates. More... | |
| void | add_ry_to_front (int target_qbit) |
| Add a RY gate to the front of the list of gates. More... | |
| void | add_ryy (std::vector< int > target_qbits) |
| Append a RYY gate to the list of gates. More... | |
| void | add_ryy_to_front (std::vector< int > target_qbits) |
| Add a RYY gate to the front of the list of gates. More... | |
| void | add_rz (int target_qbit) |
| Append a RZ gate to the list of gates. More... | |
| void | add_rz_to_front (int target_qbit) |
| Add a RZ gate to the front of the list of gates. More... | |
| void | add_rzz (std::vector< int > target_qbits) |
| Append a RZZ gate to the list of gates. More... | |
| void | add_rzz_to_front (std::vector< int > target_qbits) |
| Add a RZZ gate to the front of the list of gates. More... | |
| void | add_s (int target_qbit) |
| Append a S gate to the list of gates. More... | |
| void | add_s_to_front (int target_qbit) |
| Add a S gate to the front of the list of gates. More... | |
| void | add_sdg (int target_qbit) |
| Append a Sdg gate to the list of gates. More... | |
| void | add_sdg_to_front (int target_qbit) |
| Add a Sdg gate to the front of the list of gates. More... | |
| void | add_swap (const std::vector< int > &target_qbits) |
| Append a SWAP gate to the list of gates. More... | |
| void | add_swap_to_front (const std::vector< int > &target_qbits) |
| Add a SWAP gate to the front of the list of gates. More... | |
| void | add_sx (int target_qbit) |
| Append a SX gate to the list of gates. More... | |
| void | add_sx_to_front (int target_qbit) |
| Add a SX gate to the front of the list of gates. More... | |
| void | add_sxdg (int target_qbit) |
| Append a SXdg gate to the list of gates. More... | |
| void | add_sxdg_to_front (int target_qbit) |
| Add a SXdg gate to the front of the list of gates. More... | |
| void | add_syc (int target_qbit, int control_qbit) |
| Append a Sycamore gate (i.e. More... | |
| void | add_syc_to_front (int target_qbit, int control_qbit) |
| Add a Sycamore gate (i.e. More... | |
| void | add_t (int target_qbit) |
| Append a T gate to the list of gates. More... | |
| void | add_t_to_front (int target_qbit) |
| Add a T gate to the front of the list of gates. More... | |
| void | add_tdg (int target_qbit) |
| Append a Tdg gate to the list of gates. More... | |
| void | add_tdg_to_front (int target_qbit) |
| Add a Tdg gate to the front of the list of gates. More... | |
| void | add_u1 (int target_qbit) |
| Append a U1 gate to the list of gates. More... | |
| void | add_u1_to_front (int target_qbit) |
| Add a U1 gate to the front of the list of gates. More... | |
| void | add_u2 (int target_qbit) |
| Append a U2 gate to the list of gates. More... | |
| void | add_u2_to_front (int target_qbit) |
| Add a U2 gate to the front of the list of gates. More... | |
| void | add_u3 (int target_qbit) |
| Append a U3 gate to the list of gates. More... | |
| void | add_u3_to_front (int target_qbit) |
| Add a U3 gate to the front of the list of gates. More... | |
| void | add_x (int target_qbit) |
| Append a X gate to the list of gates. More... | |
| void | add_x_to_front (int target_qbit) |
| Add a X gate to the front of the list of gates. More... | |
| void | add_y (int target_qbit) |
| Append a Y gate to the list of gates. More... | |
| void | add_y_to_front (int target_qbit) |
| Add a Y gate to the front of the list of gates. More... | |
| void | add_z (int target_qbit) |
| Append a Z gate to the list of gates. More... | |
| void | add_z_to_front (int target_qbit) |
| Add a Z gate to the front of the list of gates. More... | |
| virtual std::vector< Matrix > | apply_derivate_to (Matrix_real ¶meters_mtx, Matrix &input, int parallel) override |
| Call to evaluate the derivate of the circuit on an inout with respect to all of the free parameters. More... | |
| virtual void | apply_derivate_to (Matrix_real ¶meters_mtx, Matrix &input, int parallel, std::vector< Matrix > &output) override |
| void | apply_derivate_to (Matrix_real ¶meters_mtx, Matrix &input, int parallel, std::vector< Matrix > &output, size_t output_offset, bool resize_output) |
| virtual std::vector< Matrix_float > | apply_derivate_to (Matrix_real_float ¶meters_mtx, Matrix_float &input, int parallel) override |
| Float32 overload: evaluate the derivative of the circuit w.r.t. More... | |
| virtual void | apply_derivate_to (Matrix_real_float ¶meters_mtx, Matrix_float &input, int parallel, std::vector< Matrix_float > &output) override |
| void | apply_derivate_to (Matrix_real_float ¶meters_mtx, Matrix_float &input, int parallel, std::vector< Matrix_float > &output, size_t output_offset, bool resize_output) |
| virtual void | apply_from_right (Matrix_real ¶meters_mtx, Matrix &input) override |
| Call to apply the gate on the input array/matrix by input*CNOT. More... | |
| virtual void | apply_from_right (Matrix_real_float ¶meters_mtx, Matrix_float &input) override |
| Float32 overload for right-side parametric gate application by input*Gate. More... | |
| virtual void | apply_from_right (Matrix &input) |
| Call to apply the gate on the input array/matrix by input*Gate. More... | |
| virtual void | apply_from_right (Matrix_float &input) |
| Float32 overload for right-side gate application by input*Gate. More... | |
| virtual void | apply_from_right_inner (Matrix_real ¶meters_mtx, const Matrix_real &precomputed_sincos, Matrix &input) override |
| Internal right-apply entry that consumes already precomputed sin/cos values. More... | |
| virtual void | apply_from_right_inner (Matrix_real_float ¶meters_mtx, const Matrix_real_float &precomputed_sincos, Matrix_float &input) override |
| Float32 internal right-apply entry that consumes already precomputed sin/cos values. More... | |
| virtual void | apply_to (Matrix_real ¶meters_mtx, Matrix &input, int parallel=0) override |
| Call to apply the gate on the input array/matrix Gates_block*input. More... | |
| virtual void | apply_to (Matrix_float &input, int parallel=0) override |
| Float32 overload for gate application. More... | |
| virtual void | apply_to (Matrix_real_float ¶meters_mtx, Matrix_float &input, int parallel=0) override |
| Float32 overload for parametric gate application. More... | |
| virtual void | apply_to (Matrix_real_any ¶meters_mtx, Matrix_any &input, int parallel=0) |
| Precision-agnostic apply entry point for float32/float64 execution. More... | |
| virtual void | apply_to (Matrix &input, int parallel) |
| Call to apply the gate on the input array/matrix. More... | |
| void | apply_to (Matrix_any &input, int parallel) |
| Precision-agnostic dispatch helper for matrix/state application. More... | |
| virtual std::vector< Matrix > | apply_to_combined (Matrix_real ¶meters_mtx, Matrix &input, int parallel) override |
| Combined forward + derivative application with shared precomputed trig cache. More... | |
| virtual void | apply_to_combined (Matrix_real ¶meters_mtx, Matrix &input, int parallel, std::vector< Matrix > &output) override |
| virtual std::vector< Matrix_float > | apply_to_combined (Matrix_real_float ¶meters_mtx, Matrix_float &input, int parallel) override |
| Float32 combined forward + derivative application. More... | |
| virtual void | apply_to_combined (Matrix_real_float ¶meters_mtx, Matrix_float &input, int parallel, std::vector< Matrix_float > &output) override |
| virtual std::vector< Matrix > | apply_to_combined_inner (Matrix_real ¶meters_mtx, const Matrix_real &precomputed_sincos, Matrix &input, int parallel) override |
| Internal combined forward+derivative entry with precomputed sin/cos. More... | |
| virtual void | apply_to_combined_inner (Matrix_real ¶meters_mtx, const Matrix_real &precomputed_sincos, Matrix &input, int parallel, std::vector< Matrix > &output) override |
| virtual std::vector< Matrix_float > | apply_to_combined_inner (Matrix_real_float ¶meters_mtx, const Matrix_real_float &precomputed_sincos, Matrix_float &input, int parallel) override |
| Float32 internal combined forward+derivative entry with precomputed sin/cos. More... | |
| virtual void | apply_to_combined_inner (Matrix_real_float ¶meters_mtx, const Matrix_real_float &precomputed_sincos, Matrix_float &input, int parallel, std::vector< Matrix_float > &output) override |
| virtual void | apply_to_inner (Matrix_real ¶meters_mtx, const Matrix_real &precomputed_sincos, Matrix &input, int parallel=0) override |
| Internal apply entry that consumes already precomputed sin/cos values. More... | |
| virtual void | apply_to_inner (Matrix_real_float ¶meters_mtx, const Matrix_real_float &precomputed_sincos, Matrix_float &input, int parallel=0) override |
| Float32 internal apply entry that consumes already precomputed sin/cos values. More... | |
| void | apply_to_list (Matrix_real ¶meters, std::vector< Matrix > &inputs, int parallel) override |
| Call to apply the gate on the input array/matrix by U3*input. More... | |
| void | apply_to_list (Matrix_real_float ¶meters, std::vector< Matrix_float > &inputs, int parallel) override |
| Float32 overload: apply circuit to a list of float32 matrices. More... | |
| virtual void | apply_to_list (std::vector< Matrix > &inputs, int parallel) |
| Call to apply the gate on a list of inputs. More... | |
| virtual void | apply_to_list (std::vector< Matrix_float > &inputs, int parallel) |
| Float32 overload: apply gate to a list of float32 inputs without parameters. More... | |
| void | clear_children () |
| Call to erase data on children. More... | |
| void | clear_parents () |
| Call to erase data on parents. More... | |
| virtual Gates_block * | clone () override |
| Create a clone of the present class. More... | |
| void | combine (Gates_block *op_block) |
| Call to append the gates of an gate block to the current block. More... | |
| Matrix_real | compute_precomputed_sincos (const Matrix_real ¶meters) const |
| Public wrapper to precompute gate-local sin/cos pairs. More... | |
| Matrix_real_float | compute_precomputed_sincos (const Matrix_real_float ¶meters) const |
| Float32 public wrapper to precompute gate-local sin/cos pairs. More... | |
| bool | contains_adaptive_gate () |
| Call to determine, whether the circuit contains daptive gate or not. More... | |
| bool | contains_adaptive_gate (int idx) |
| Call to determine, whether the sub-circuit at a given position in the circuit contains daptive gate or not. More... | |
| Gates_block * | create_remapped_circuit (const std::map< int, int > &qbit_map) |
| Call to create a new circuit with remapped qubits. More... | |
| Gates_block * | create_remapped_circuit (const std::map< int, int > &qbit_map, const int qbit_num_) |
| Call to create a new circuit with remapped qubits. More... | |
| virtual Matrix | derivative_aux_kernel (const Matrix_real &precomputed_sincos, int param_idx) |
| virtual Matrix_float | derivative_aux_kernel (const Matrix_real_float &precomputed_sincos, int param_idx) |
| virtual void | derivative_aux_kernel_to (const Matrix_real &precomputed_sincos, int param_idx, Matrix &output) |
| virtual void | derivative_aux_kernel_to (const Matrix_real_float &precomputed_sincos, int param_idx, Matrix_float &output) |
| virtual Matrix | derivative_kernel (const Matrix_real &precomputed_sincos, int param_idx) |
| virtual Matrix_float | derivative_kernel (const Matrix_real_float &precomputed_sincos, int param_idx) |
| virtual void | derivative_kernel_to (const Matrix_real &precomputed_sincos, int param_idx, Matrix &output) |
| virtual void | derivative_kernel_to (const Matrix_real_float &precomputed_sincos, int param_idx, Matrix_float &output) |
| void | determine_children (Gate *gate) |
| Call to obtain the child gates in the circuit. More... | |
| void | determine_parents (Gate *gate) |
| Call to obtain the parent gates in the circuit. More... | |
| int | extract_gates (Gates_block *op_block) |
| Call to extract the gates stored in the class. More... | |
| virtual Matrix_real_float | extract_parameters (Matrix_real_float ¶meters) |
| Float32 overload of extract_parameters. More... | |
| virtual Matrix_real | extract_parameters (Matrix_real ¶meters) override |
| Call to extract parameters from the parameter array corresponding to the circuit, in which the gate is embedded. More... | |
| void | fragment_circuit () |
| virtual Matrix | gate_kernel (const Matrix_real &precomputed_sincos) |
| Compute the gate kernel matrix from precomputed trigonometric values. More... | |
| virtual Matrix_float | gate_kernel (const Matrix_real_float &precomputed_sincos) |
| virtual void | gate_kernel_to (const Matrix_real &precomputed_sincos, Matrix &output) |
| virtual void | gate_kernel_to (const Matrix_real_float &precomputed_sincos, Matrix_float &output) |
| Gates_block () | |
| Default constructor of the class. More... | |
| Gates_block (int qbit_num_in) | |
| Constructor of the class. More... | |
| std::vector< Gate * > | get_children () |
| Call to get the children of the current gate. More... | |
| int | get_control_qbit () |
| Call to get the index of the control qubit. More... | |
| std::vector< int > | get_control_qbits () const |
| Call to get the vector of control qubits. More... | |
| Gates_block * | get_flat_circuit () |
| Method to generate a flat circuit. More... | |
| Gate * | get_gate (int idx) |
| Call to get the gates stored in the class. More... | |
| int | get_gate_num () |
| Call to get the number of gates grouped in the class. More... | |
| std::map< std::string, int > | get_gate_nums () |
| Call to get the number of the individual gate types in the list of gates. More... | |
| std::vector< Gate * > | get_gates () |
| Call to get the gates stored in the class. More... | |
| std::vector< int > | get_involved_qubits (bool only_target=false) override |
| Call to get the qubits involved in the gates stored in the block of gates. More... | |
| Matrix | get_matrix (Matrix_real ¶meters) override |
| Call to retrieve the gate matrix (Which is the product of all the gate matrices stored in the gate block) More... | |
| Matrix | get_matrix (Matrix_real ¶meters, int parallel) override |
| Call to retrieve the gate matrix (Which is the product of all the gate matrices stored in the gate block) More... | |
| Matrix_float | get_matrix (Matrix_real_float ¶meters) |
| Matrix_float | get_matrix (Matrix_real_float ¶meters, int parallel) override |
| Float32 overload: retrieve the gate matrix. More... | |
| virtual Matrix | get_matrix () |
| Retrieve the gate matrix for zero-parameter gates (no parameters). More... | |
| virtual Matrix | get_matrix (int parallel) |
| Retrieve the gate matrix for zero-parameter gates with parallel flag. More... | |
| std::string | get_name () |
| Call to get the name label of the gate. More... | |
| void | get_parameter_max (Matrix_real &range_max) |
| virtual std::vector< double > | get_parameter_multipliers () const |
| Returns the per-parameter multipliers relative to 2Ï used by extract_parameters. More... | |
| int | get_parameter_num () override |
| Call to get the number of free parameters. More... | |
| int | get_parameter_start_idx () |
| Call to get the starting index of the parameters in the parameter array corresponding to the circuit in which the current gate is incorporated. More... | |
| std::vector< Gate * > | get_parents () |
| Call to get the parents of the current gate. More... | |
| int | get_qbit_num () |
| Call to get the number of qubits composing the unitary. More... | |
| Matrix | get_reduced_density_matrix (Matrix_real ¶meters_mtx, Matrix &input_state, matrix_base< int > &qbit_list_subset) |
| Call to evaluate the reduced densiy matrix. More... | |
| double | get_second_Renyi_entropy (Matrix_real ¶meters_mtx, Matrix &input_state, matrix_base< int > &qbit_list) |
| Call to evaluate the seconf Rényi entropy. More... | |
| int | get_target_qbit () |
| Call to get the index of the target qubit. More... | |
| std::vector< int > | get_target_qbits () const |
| Call to get the vector of target qubits. More... | |
| gate_type | get_type () |
| Call to get the type of the operation. More... | |
| void | insert_gate (Gate *gate, int idx) |
| Call to insert a gate at a given position. More... | |
| virtual Matrix | inverse_gate_kernel (const Matrix_real &precomputed_sincos) |
| virtual Matrix_float | inverse_gate_kernel (const Matrix_real_float &precomputed_sincos) |
| virtual void | inverse_gate_kernel_to (const Matrix_real &precomputed_sincos, Matrix &output) |
| virtual void | inverse_gate_kernel_to (const Matrix_real_float &precomputed_sincos, Matrix_float &output) |
| void | list_gates (const Matrix_real ¶meters, int start_index) |
| Call to print the list of gates stored in the block of gates for a specific set of parameters. More... | |
| void | print (const std::stringstream &sstream, int verbose_level=1) const |
| Call to print output messages in the function of the verbosity level. More... | |
| void | release_gate (int idx) |
| Call to release one gate in the list. More... | |
| void | release_gates () |
| Call to release the stored gates. More... | |
| virtual void | reorder_qubits (std::vector< int > qbit_list) override |
| Call to reorder the qubits in the matrix of the gates (Obsolete function) More... | |
| void | reset_dependency_graph () |
| Method to reset the dependency graph of the gates in the circuit. More... | |
| void | reset_parameter_start_indices () |
| Method to reset the parameter start indices of gate operations incorporated in the circuit. More... | |
| void | set_children (std::vector< Gate *> &children_) |
| Call to set the children of the current gate. More... | |
| void | set_control_qbit (int control_qbit_in) |
| Call to set the control qubit for the gate operation. More... | |
| void | set_control_qbits (const std::vector< int > &control_qbits_in) |
| Call to set the control qubits for the gate operation. More... | |
| void | set_debugfile (std::string debugfile) |
| Call to set the debugfile name. More... | |
| void | set_matrix (Matrix input) |
| Call to set the stored matrix in the operation. More... | |
| void | set_matrix (Matrix_float input) |
| void | set_min_fusion (int min_fusion) |
| void | set_parameter_start_idx (int start_idx) |
| Call to set the starting index of the parameters in the parameter array corresponding to the circuit in which the current gate is incorporated. More... | |
| void | set_parents (std::vector< Gate *> &parents_) |
| Call to set the parents of the current gate. More... | |
| virtual void | set_qbit_num (int qbit_num_in) override |
| Set the number of qubits spanning the matrix of the gates stored in the block of gates. More... | |
| void | set_target_qbit (int target_qbit_in) |
| Call to set the target qubit for the gate operation. More... | |
| void | set_target_qbits (const std::vector< int > &target_qbits_in) |
| Call to set the target qubits for the gate operation. More... | |
| void | set_verbose (int verbose_in) |
| Call to set the verbose attribute. More... | |
| ~Gates_block () override | |
| Destructor of the class. More... | |
Static Public Member Functions | |
| static Matrix | calc_one_qubit_u3 (double ThetaOver2=0.0, double Phi=0.0, double Lambda=0.0) |
| Build a 2x2 U3 kernel from angles (theta/2, phi, lambda). More... | |
| static Matrix_float | calc_one_qubit_u3 (float ThetaOver2, float Phi, float Lambda) |
Public Attributes | |
| bool | debug |
| Logical variable. Set true to write output messages to the 'debug.txt' file. More... | |
| std::string | debugfile_name |
| String variable. Set the debug file name. More... | |
| int | verbose |
| Set the verbosity level of the output messages. More... | |
Protected Member Functions | |
| std::vector< Matrix > | apply_derivative_to_precomputed (const Matrix_real &precomputed_sincos, Matrix &input, int parallel) |
| Call to evaluate the derivate of the circuit on an inout with respect to all of the free parameters. More... | |
| void | apply_derivative_to_precomputed (const Matrix_real &precomputed_sincos, Matrix &input, int parallel, std::vector< Matrix > &output, size_t offset=0, bool resize_output=true) |
| std::vector< Matrix_float > | apply_derivative_to_precomputed (const Matrix_real_float &precomputed_sincos, Matrix_float &input, int parallel) |
| void | apply_derivative_to_precomputed (const Matrix_real_float &precomputed_sincos, Matrix_float &input, int parallel, std::vector< Matrix_float > &output, size_t offset=0, bool resize_output=true) |
| void | apply_kernel_from_right (Matrix &u3_1qbit, Matrix &input, const Matrix *alt_kernel=nullptr) |
| Call to apply the gate kernel on the input state or unitary from right (no AVX support) More... | |
| void | apply_kernel_from_right (Matrix_float &u3_1qbit, Matrix_float &input, const Matrix_float *alt_kernel=nullptr) |
| void | apply_kernel_to (Matrix &u3_1qbit, Matrix &input, bool deriv=false, int parallel=0, const Matrix *alt_kernel=nullptr) |
| Call to apply the gate kernel on the input state or unitary with optional AVX support. More... | |
| void | apply_kernel_to (Matrix_float &u3_1qbit, Matrix_float &input, bool deriv=false, int parallel=0, const Matrix_float *alt_kernel=nullptr) |
| Float32 overload of one-qubit kernel application helper. More... | |
| void | invalidate_structure_cache () |
| Matrix_real | precompute_sincos (const Matrix_real ¶meters) const |
| Precompute sin/cos pairs for each gate-local parameter. More... | |
| Matrix_real_float | precompute_sincos (const Matrix_real_float ¶meters) const |
| Float32 precompute sin/cos pairs for each gate-local parameter. More... | |
Protected Attributes | |
| std::vector< Gate * > | children |
| list of child gates to be applied after this current gate More... | |
| int | control_qbit |
| The index of the qubit which acts as a control qubit (control_qbit >= 0) in controlled operations. More... | |
| std::vector< int > | control_qbits |
| Vector of control qubit indices (for multi-qubit gates) More... | |
| SmartAtomicPtr< Gates_block > | fusion_block |
| std::vector< Gate * > | gates |
| The list of stored gates. More... | |
| std::vector< int > | involved_qubits_cache |
| std::shared_ptr< tbb::spin_mutex > | involved_qubits_cache_mutex |
| bool | involved_qubits_cache_valid |
| std::vector< int > | involved_target_qubits_cache |
| bool | involved_target_qubits_cache_valid |
| int | layer_num |
| number of gate layers More... | |
| int | matrix_size |
| The size N of the NxN matrix associated with the operations. More... | |
| int | min_fusion |
| maximal number of qubits in partitions More... | |
| std::string | name |
| A string labeling the gate operation. More... | |
| int | parameter_num |
| the number of free parameters of the operation More... | |
| int | parameter_start_idx |
| the index in the parameter array (corrensponding to the encapsulated circuit) where the gate parameters begin (if gates are placed into a circuit a single parameter array is used to execute the whole circuit) More... | |
| std::vector< Gate * > | parents |
| list of parent gates to be applied in the circuit prior to this current gate More... | |
| int | qbit_num |
| number of qubits spanning the matrix of the operation More... | |
| int | target_qbit |
| The index of the qubit on which the operation acts (target_qbit >= 0) More... | |
| std::vector< int > | target_qbits |
| Vector of target qubit indices (for multi-qubit gates) More... | |
| gate_type | type |
| The type of the operation (see enumeration gate_type) More... | |
A class responsible for grouping two-qubit (CNOT,CZ,CH) and one-qubit gates into layers.
Definition at line 44 of file Gates_block.h.
| Gates_block::Gates_block | ( | ) |
Default constructor of the class.
Definition at line 82 of file Gates_block.cpp.

| Gates_block::Gates_block | ( | int | qbit_num_in | ) |
Constructor of the class.
| qbit_num_in | The number of qubits in the unitaries |
Definition at line 103 of file Gates_block.cpp.
|
override |
Destructor of the class.
Definition at line 136 of file Gates_block.cpp.

Append a Adaptive gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2440 of file Gates_block.cpp.


Add a Adaptive gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2455 of file Gates_block.cpp.

Append a CCX gate (i.e.
Toffoli gate) to the list of gates
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbits | Vector of control qubit indices (should contain exactly 2 elements for CCX) |
Toffoli gate) operation to the list of gates
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbits | Vector of control qubit indices (should contain exactly 2 elements for CCX) |
Definition at line 2342 of file Gates_block.cpp.

Add a CCX gate (i.e.
Toffoli gate) to the front of the list of gates
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbits | Vector of control qubit indices (should contain exactly 2 elements for CCX) |
Toffoli gate) operation to the front of the list of gates
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbits | Vector of control qubit indices (should contain exactly 2 elements for CCX) |
Definition at line 2354 of file Gates_block.cpp.

Append a CH gate (i.e.
controlled Hadamard gate) gate to the list of gates
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
controlled Hadamard gate) operation to the list of gates
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2278 of file Gates_block.cpp.

Add a CH gate (i.e.
controlled Hadamard gate) gate to the front of the list of gates
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
controlled Hadamard gate) operation to the front of the list of gates
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2295 of file Gates_block.cpp.

|
inherited |
Append a CNOT gate gate to the list of gates.
Append a C_NOT gate operation to the list of gates.
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1880 of file Gates_block.cpp.


Add a C_NOT gate gate to the front of the list of gates.
Add a C_NOT gate operation to the front of the list of gates.
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1897 of file Gates_block.cpp.

Append a CRY gate to the list of gates.
Append a CRX gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1758 of file Gates_block.cpp.

Add a CRY gate to the front of the list of gates.
Add a CRX gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1774 of file Gates_block.cpp.

Append a CR gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1789 of file Gates_block.cpp.

Add a CR gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1805 of file Gates_block.cpp.

Append a CROT gate gate to the list of gates.
Append a CROT gate to the list of gates.
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1821 of file Gates_block.cpp.

Add a CROT gate gate to the front of the list of gates.
Add a CROT gate to the front of the list of gates.
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1837 of file Gates_block.cpp.

Append a CRY gate to the list of gates.
Append a CRX gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1696 of file Gates_block.cpp.

Add a CRY gate to the front of the list of gates.
Add a CRX gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1712 of file Gates_block.cpp.

Append a CRY gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1665 of file Gates_block.cpp.


Add a CRY gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1681 of file Gates_block.cpp.

Append a CRY gate to the list of gates.
Append a CRX gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1727 of file Gates_block.cpp.

Add a CRY gate to the front of the list of gates.
Add a CRX gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1743 of file Gates_block.cpp.

| void Gates_block::add_cswap | ( | const std::vector< int > & | target_qbits, |
| const std::vector< int > & | control_qbits | ||
| ) |
Append a CSWAP gate (Controlled SWAP) to the list of gates.
| target_qbits | Vector of target qubit indices (should contain exactly 2 elements) |
| control_qbits | Vector of control qubit indices (should contain exactly 1 element) |
Definition at line 2388 of file Gates_block.cpp.

| void Gates_block::add_cswap_to_front | ( | const std::vector< int > & | target_qbits, |
| const std::vector< int > & | control_qbits | ||
| ) |
Add a CSWAP gate (Controlled SWAP) to the front of the list of gates.
| target_qbits | Vector of target qubit indices (should contain exactly 2 elements) |
| control_qbits | Vector of control qubit indices (should contain exactly 1 element) |
Definition at line 2400 of file Gates_block.cpp.

Append a CU gate (i.e.
controlled U gate) gate to the list of gates
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
controlled U gate) operation to the list of gates
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2310 of file Gates_block.cpp.

Add a CU gate (i.e.
controlled U gate) gate to the front of the list of gates
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
controlled U gate) operation to the front of the list of gates
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2327 of file Gates_block.cpp.

Append a CZ gate gate to the list of gates.
Append a CZ gate operation to the list of gates.
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1915 of file Gates_block.cpp.

Add a CZ gate gate to the front of the list of gates.
Add a CZ gate operation to the front of the list of gates.
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1932 of file Gates_block.cpp.

| void Gates_block::add_gate | ( | Gate * | gate | ) |
Append a general gate to the list of gates.
| gate | A pointer to a class Gate describing an gate. |
| gate | A pointer to a class Gate describing a gate operation. |
Definition at line 2500 of file Gates_block.cpp.

| void Gates_block::add_gate_nums | ( | std::map< std::string, int > & | gate_nums | ) |
Call to add the number of the individual gate types in the circuit to the map given in the argument.
| A | map<gate_name, gate_count> describing the number of the individual gate types |
Definition at line 2598 of file Gates_block.cpp.


| void Gates_block::add_gate_to_front | ( | Gate * | gate | ) |
Add an gate to the front of the list of gates.
Add a gate to the front of the list of gates.
| gate | A pointer to a class Gate describing an gate. |
| gate | A pointer to a class Gate describing a gate. |
Definition at line 2533 of file Gates_block.cpp.


| void Gates_block::add_gates | ( | std::vector< Gate *> | gates_in | ) |
Append a list of gates to the list of gates.
| gates_in | A list of gate class instances. |
| gates_in | A list of operation class instances. |
Definition at line 2411 of file Gates_block.cpp.

| void Gates_block::add_gates_to_front | ( | std::vector< Gate *> | gates_in | ) |
Add an array of gates to the front of the list of gates.
| gates_in | A list of gate class instances. |
| gates_in | A list of operation class instances. |
Definition at line 2424 of file Gates_block.cpp.

| void Gates_block::add_general_operation | ( | const Matrix & | operation_mtx, |
| const std::vector< int > & | target_qbits = std::vector<int>(), |
||
| const std::vector< int > & | control_qbits = std::vector<int>() |
||
| ) |
Append a GENERAL_OPERATION gate with an explicitly provided matrix.
| operation_mtx | The operation matrix. Must be matrix_size x matrix_size. |
| target_qbits | Optional metadata for target qubits involved in this gate. |
| control_qbits | Optional metadata for control qubits involved in this gate. |
Definition at line 2472 of file Gates_block.cpp.

| void Gates_block::add_h | ( | int | target_qbit | ) |
Append a Hadamard gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1946 of file Gates_block.cpp.


| void Gates_block::add_h_to_front | ( | int | target_qbit | ) |
Add a Hadamard gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1959 of file Gates_block.cpp.

|
inherited |
| void Gates_block::add_r | ( | int | target_qbit | ) |
Append a R gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1605 of file Gates_block.cpp.

| void Gates_block::add_r_to_front | ( | int | target_qbit | ) |
Add a R gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1618 of file Gates_block.cpp.

| void Gates_block::add_rx | ( | int | target_qbit | ) |
Append a RX gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1498 of file Gates_block.cpp.

| void Gates_block::add_rx_to_front | ( | int | target_qbit | ) |
Add a RX gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1511 of file Gates_block.cpp.

| void Gates_block::add_rxx | ( | std::vector< int > | target_qbits | ) |
Append a RXX gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1525 of file Gates_block.cpp.

| void Gates_block::add_rxx_to_front | ( | std::vector< int > | target_qbits | ) |
Add a RXX gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1538 of file Gates_block.cpp.

| void Gates_block::add_ry | ( | int | target_qbit | ) |
Append a RY gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1633 of file Gates_block.cpp.


| void Gates_block::add_ry_to_front | ( | int | target_qbit | ) |
Add a RY gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1647 of file Gates_block.cpp.

| void Gates_block::add_ryy | ( | std::vector< int > | target_qbits | ) |
Append a RYY gate to the list of gates.
| target_qbits | The identification numbers of the target qubits (should contain exactly 2 elements) |
Definition at line 1552 of file Gates_block.cpp.

| void Gates_block::add_ryy_to_front | ( | std::vector< int > | target_qbits | ) |
Add a RYY gate to the front of the list of gates.
| target_qbits | The identification numbers of the target qubits (should contain exactly 2 elements) |
Definition at line 1565 of file Gates_block.cpp.

| void Gates_block::add_rz | ( | int | target_qbit | ) |
Append a RZ gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1851 of file Gates_block.cpp.


| void Gates_block::add_rz_to_front | ( | int | target_qbit | ) |
Add a RZ gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1864 of file Gates_block.cpp.

| void Gates_block::add_rzz | ( | std::vector< int > | target_qbits | ) |
Append a RZZ gate to the list of gates.
| target_qbits | The identification numbers of the target qubits (should contain exactly 2 elements) |
Definition at line 1579 of file Gates_block.cpp.

| void Gates_block::add_rzz_to_front | ( | std::vector< int > | target_qbits | ) |
Add a RZZ gate to the front of the list of gates.
| target_qbits | The identification numbers of the target qubits (should contain exactly 2 elements) |
Definition at line 1592 of file Gates_block.cpp.

| void Gates_block::add_s | ( | int | target_qbit | ) |
Append a S gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2065 of file Gates_block.cpp.

| void Gates_block::add_s_to_front | ( | int | target_qbit | ) |
Add a S gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2078 of file Gates_block.cpp.

| void Gates_block::add_sdg | ( | int | target_qbit | ) |
Append a Sdg gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2094 of file Gates_block.cpp.

| void Gates_block::add_sdg_to_front | ( | int | target_qbit | ) |
Add a Sdg gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2107 of file Gates_block.cpp.

| void Gates_block::add_swap | ( | const std::vector< int > & | target_qbits | ) |
Append a SWAP gate to the list of gates.
| target_qbits | Vector of target qubit indices (should contain exactly 2 elements for SWAP) |
Definition at line 2365 of file Gates_block.cpp.

| void Gates_block::add_swap_to_front | ( | const std::vector< int > & | target_qbits | ) |
Add a SWAP gate to the front of the list of gates.
| target_qbits | Vector of target qubit indices (should contain exactly 2 elements for SWAP) |
Definition at line 2376 of file Gates_block.cpp.

| void Gates_block::add_sx | ( | int | target_qbit | ) |
Append a SX gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2186 of file Gates_block.cpp.

| void Gates_block::add_sx_to_front | ( | int | target_qbit | ) |
Add a SX gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2199 of file Gates_block.cpp.

| void Gates_block::add_sxdg | ( | int | target_qbit | ) |
Append a SXdg gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2214 of file Gates_block.cpp.

| void Gates_block::add_sxdg_to_front | ( | int | target_qbit | ) |
Add a SXdg gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2227 of file Gates_block.cpp.

Append a Sycamore gate (i.e.
Append a Sycamore gate operation to the list of gates.
controlled Hadamard gate) gate to the list of gates
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2243 of file Gates_block.cpp.

Add a Sycamore gate (i.e.
Add a Sycamore gate operation to the front of the list of gates.
controlled Hadamard gate) gate to the front of the list of gates
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
| control_qbit | The identification number of the control qubit. (0 <= target_qbit <= qbit_num-1) |
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2260 of file Gates_block.cpp.

| void Gates_block::add_t | ( | int | target_qbit | ) |
Append a T gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2124 of file Gates_block.cpp.

| void Gates_block::add_t_to_front | ( | int | target_qbit | ) |
Add a T gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2137 of file Gates_block.cpp.

| void Gates_block::add_tdg | ( | int | target_qbit | ) |
Append a Tdg gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2154 of file Gates_block.cpp.

| void Gates_block::add_tdg_to_front | ( | int | target_qbit | ) |
Add a Tdg gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2167 of file Gates_block.cpp.

| void Gates_block::add_u1 | ( | int | target_qbit | ) |
Append a U1 gate to the list of gates.
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1419 of file Gates_block.cpp.


| void Gates_block::add_u1_to_front | ( | int | target_qbit | ) |
Add a U1 gate to the front of the list of gates.
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1432 of file Gates_block.cpp.

| void Gates_block::add_u2 | ( | int | target_qbit | ) |
Append a U2 gate to the list of gates.
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1445 of file Gates_block.cpp.

| void Gates_block::add_u2_to_front | ( | int | target_qbit | ) |
Add a U2 gate to the front of the list of gates.
| target_qbit | The identification number of the target qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1458 of file Gates_block.cpp.

| void Gates_block::add_u3 | ( | int | target_qbit | ) |
Append a U3 gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| Theta | The Theta parameter of the U3 gate |
| Phi | The Phi parameter of the U3 gate |
| Lambda | The Lambda parameter of the U3 gate |
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1471 of file Gates_block.cpp.


| void Gates_block::add_u3_to_front | ( | int | target_qbit | ) |
Add a U3 gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
| Theta | The Theta parameter of the U3 gate |
| Phi | The Phi parameter of the U3 gate |
| Lambda | The Lambda parameter of the U3 gate |
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1484 of file Gates_block.cpp.

| void Gates_block::add_x | ( | int | target_qbit | ) |
Append a X gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1977 of file Gates_block.cpp.


| void Gates_block::add_x_to_front | ( | int | target_qbit | ) |
Add a X gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 1990 of file Gates_block.cpp.

| void Gates_block::add_y | ( | int | target_qbit | ) |
Append a Y gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2006 of file Gates_block.cpp.

| void Gates_block::add_y_to_front | ( | int | target_qbit | ) |
Add a Y gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2019 of file Gates_block.cpp.

| void Gates_block::add_z | ( | int | target_qbit | ) |
Append a Z gate to the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2035 of file Gates_block.cpp.

| void Gates_block::add_z_to_front | ( | int | target_qbit | ) |
Add a Z gate to the front of the list of gates.
| target_qbit | The identification number of the targt qubit. (0 <= target_qbit <= qbit_num-1) |
Definition at line 2048 of file Gates_block.cpp.

|
overridevirtual |
Call to evaluate the derivate of the circuit on an inout with respect to all of the free parameters.
| parameters | An array of the input parameters. |
| input | The input array on which the gate is applied |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP (NOT IMPLEMENTED YET) and 2 for parallel with TBB (optional) |
Reimplemented from Gate.
Definition at line 996 of file Gates_block.cpp.

|
overridevirtual |
Reimplemented from Gate.
Definition at line 1005 of file Gates_block.cpp.

| void Gates_block::apply_derivate_to | ( | Matrix_real & | parameters_mtx, |
| Matrix & | input, | ||
| int | parallel, | ||
| std::vector< Matrix > & | output, | ||
| size_t | output_offset, | ||
| bool | resize_output | ||
| ) |
|
overridevirtual |
Float32 overload: evaluate the derivative of the circuit w.r.t.
all free parameters. Stabilized path: casts inputs to float64, runs the float64 derivative, then casts the results back to float32. Identical computational route to the float64 overload.
| parameters_mtx_in | Float32 parameter array |
| input | Float32 input matrix/state |
| parallel | Set 0 for sequential execution, 1 for parallel with TBB (optional) |
Reimplemented from Gate.
Definition at line 1162 of file Gates_block.cpp.

|
overridevirtual |
Reimplemented from Gate.
Definition at line 1171 of file Gates_block.cpp.

| void Gates_block::apply_derivate_to | ( | Matrix_real_float & | parameters_mtx, |
| Matrix_float & | input, | ||
| int | parallel, | ||
| std::vector< Matrix_float > & | output, | ||
| size_t | output_offset, | ||
| bool | resize_output | ||
| ) |
|
protectedinherited |
Call to evaluate the derivate of the circuit on an inout with respect to all of the free parameters.
| parameters | An array of the input parameters. |
| input | The input array on which the gate is applied |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP (NOT IMPLEMENTED YET) and 2 for parallel with TBB (optional) |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
overridevirtual |
Call to apply the gate on the input array/matrix by input*CNOT.
Call to apply the gate on the input array/matrix by input*Gate_block.
| input | The input array on which the gate is applied |
Reimplemented from Gate.
Definition at line 885 of file Gates_block.cpp.

|
overridevirtual |
Float32 overload for right-side parametric gate application by input*Gate.
| parameter_mtx | Float32 parameter matrix |
| input | The float32 input array on which the gate is applied |
Reimplemented from Gate.
Definition at line 939 of file Gates_block.cpp.

|
virtualinherited |
|
virtualinherited |
|
overridevirtual |
Internal right-apply entry that consumes already precomputed sin/cos values.
Reimplemented from Gate.
Definition at line 893 of file Gates_block.cpp.


|
overridevirtual |
Float32 internal right-apply entry that consumes already precomputed sin/cos values.
Reimplemented from Gate.
Definition at line 947 of file Gates_block.cpp.

|
protectedinherited |
Call to apply the gate kernel on the input state or unitary from right (no AVX support)
| u3_1qbit | The 2x2 kernel of the gate operation |
| input | The input matrix on which the transformation is applied |
| deriv | Set true to apply derivate transformation, false otherwise |
Definition at line 2082 of file Gate.cpp.

|
protectedinherited |
|
protectedinherited |
Call to apply the gate kernel on the input state or unitary with optional AVX support.
| u3_1qbit | The 2x2 kernel of the gate operation |
| input | The input matrix on which the transformation is applied |
| deriv | Set true to apply derivate transformation, false otherwise (optional) |
| parallel | Set true to apply parallel kernels, false otherwise (optional) |
| parallel | Set 0 for sequential execution (default), 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
| u3_1qbit | The 2x2 kernel of the gate operation |
| input | The input matrix on which the transformation is applied |
| deriv | Set true to apply derivate transformation, false otherwise (optional) |
| deriv | Set true to apply parallel kernels, false otherwise (optional) |
| parallel | Set 0 for sequential execution (default), 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
Definition at line 1478 of file Gate.cpp.

|
protectedinherited |
|
overridevirtual |
Call to apply the gate on the input array/matrix Gates_block*input.
| parameters | An array of the input parameters. |
| input | The input array on which the gate is applied |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
| parameters | An array of parameters to calculate the matrix of the U3 gate. |
| input | The input array on which the gate is applied |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
Reimplemented from Gate.
Definition at line 606 of file Gates_block.cpp.


|
overridevirtual |
Float32 overload for gate application.
| input | Float32 input matrix/state |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
Reimplemented from Gate.
Definition at line 714 of file Gates_block.cpp.

|
overridevirtual |
Float32 overload for parametric gate application.
| parameter_mtx | Float32 parameter matrix |
| input | Float32 input matrix/state |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
Reimplemented from Gate.
Definition at line 722 of file Gates_block.cpp.

|
virtual |
Precision-agnostic apply entry point for float32/float64 execution.
| parameters_mtx | Precision-tagged parameter matrix carrier |
| input | Precision-tagged matrix/state carrier |
| parallel | Set 0 for sequential execution, 1 for OpenMP and 2 for TBB |
Definition at line 838 of file Gates_block.cpp.

Call to apply the gate on the input array/matrix.
| input | The input array on which the gate is applied |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
Definition at line 433 of file Gate.cpp.

|
inherited |
|
overridevirtual |
Combined forward + derivative application with shared precomputed trig cache.
Return format: first element is forward apply_to result, remaining elements are derivatives.
| parameters_mtx_in | Parameter matrix for the gate |
| input | Input matrix/state |
| parallel | Parallel mode selector |
Reimplemented from Gate.
Definition at line 1320 of file Gates_block.cpp.


|
overridevirtual |
Reimplemented from Gate.
Definition at line 1328 of file Gates_block.cpp.

|
overridevirtual |
Float32 combined forward + derivative application.
Return format: first element is forward apply_to result, remaining elements are derivatives.
| parameters_mtx_in | Float32 parameter matrix for the gate |
| input | Float32 input matrix/state |
| parallel | Parallel mode selector |
Reimplemented from Gate.
Definition at line 1368 of file Gates_block.cpp.

|
overridevirtual |
Reimplemented from Gate.
Definition at line 1376 of file Gates_block.cpp.

|
overridevirtual |
Internal combined forward+derivative entry with precomputed sin/cos.
Reimplemented from Gate.
Definition at line 1336 of file Gates_block.cpp.

|
overridevirtual |
Reimplemented from Gate.
Definition at line 1345 of file Gates_block.cpp.

|
overridevirtual |
Float32 internal combined forward+derivative entry with precomputed sin/cos.
Reimplemented from Gate.
Definition at line 1384 of file Gates_block.cpp.

|
overridevirtual |
Reimplemented from Gate.
Definition at line 1393 of file Gates_block.cpp.

|
overridevirtual |
Internal apply entry that consumes already precomputed sin/cos values.
parameter_mtx is preserved for gates with custom parameter handling.
Reimplemented from Gate.
Definition at line 614 of file Gates_block.cpp.


|
overridevirtual |
Float32 internal apply entry that consumes already precomputed sin/cos values.
parameter_mtx is preserved for gates with custom parameter handling.
Reimplemented from Gate.
Definition at line 730 of file Gates_block.cpp.

|
overridevirtual |
Call to apply the gate on the input array/matrix by U3*input.
| parameters | An array of parameters to calculate the matrix of the U3 gate. |
| inputs | The input array on which the gate is applied |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
| parameters | An array of parameters to calculate the matrix of the U3 gate. |
| input | The input array on which the gate is applied |
Reimplemented from Gate.
Definition at line 578 of file Gates_block.cpp.
|
overridevirtual |
Float32 overload: apply circuit to a list of float32 matrices.
| parameters_mtx | Float32 parameter array |
| inputs | Float32 input matrices/states |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
Reimplemented from Gate.
Definition at line 592 of file Gates_block.cpp.
Call to apply the gate on a list of inputs.
| inputs | The input array on which the gate is applied |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
Definition at line 320 of file Gate.cpp.


|
virtualinherited |
Float32 overload: apply gate to a list of float32 inputs without parameters.
| inputs | Float32 input matrices/states |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
Definition at line 380 of file Gate.cpp.

|
staticinherited |
|
staticinherited |
|
inherited |
|
inherited |
|
overridevirtual |
Create a clone of the present class.
Reimplemented from Gate.
Reimplemented in Sub_Matrix_Decomposition.
Definition at line 3321 of file Gates_block.cpp.


| void Gates_block::combine | ( | Gates_block * | op_block | ) |
Call to append the gates of an gate block to the current block.
Call to append the gates of a gate block to the current circuit.
| op_block | A pointer to an instance of class Gate_block |
| op_block | A pointer to an instance of class Gates_block |
Definition at line 3243 of file Gates_block.cpp.


|
inherited |
|
inherited |
| bool Gates_block::contains_adaptive_gate | ( | ) |
Call to determine, whether the circuit contains daptive gate or not.
Definition at line 3394 of file Gates_block.cpp.


Call to determine, whether the sub-circuit at a given position in the circuit contains daptive gate or not.
| idx | The position of the gate to be checked. |
Definition at line 3421 of file Gates_block.cpp.

| Gates_block * Gates_block::create_remapped_circuit | ( | const std::map< int, int > & | qbit_map | ) |
Call to create a new circuit with remapped qubits.
| qbit_map | The map to reorder the qbits in a form of map: {int(initial_qbit): int(remapped_qbit)}. |
Definition at line 3014 of file Gates_block.cpp.

| Gates_block * Gates_block::create_remapped_circuit | ( | const std::map< int, int > & | qbit_map, |
| const int | qbit_num_ | ||
| ) |
Call to create a new circuit with remapped qubits.
| qbit_map | The map to reorder the qbits in a form of map: {int(initial_qbit): int(remapped_qbit)}. . |
| qbit_num | The number of qubits in the remapped circuit |
Definition at line 3028 of file Gates_block.cpp.

|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
| void Gates_block::determine_children | ( | Gate * | gate | ) |
Call to obtain the child gates in the circuit.
A child gate needs to be applied after the given gate. The children gates are stored via the "children" attribute of the gate instance
| gate | The gate for which the children are determined. |
Definition at line 3741 of file Gates_block.cpp.


| void Gates_block::determine_parents | ( | Gate * | gate | ) |
Call to obtain the parent gates in the circuit.
A parent gate needs to be applied prior to the given gate. The parent gates are stored via the "parents" attribute of the gate instance
| gate | The gate for which the parents are determined. |
Definition at line 3695 of file Gates_block.cpp.


| int Gates_block::extract_gates | ( | Gates_block * | op_block | ) |
Call to extract the gates stored in the class.
| op_block | An instance of Gates_block class in which the gates will be stored. (The current gates will be erased) |
Definition at line 3346 of file Gates_block.cpp.


|
virtualinherited |
Float32 overload of extract_parameters.
Uses get_parameter_multipliers() identically.
| parameters | The float32 parameter array corresponding to the circuit in which the gate is embedded |
Uses get_parameter_multipliers() identically. Multiplier m â extracted[i] = fmodf(m * params[start+i], m * 2Ï).
Definition at line 2710 of file Gate.cpp.

|
overridevirtual |
Call to extract parameters from the parameter array corresponding to the circuit, in which the gate is embedded.
| parameters | The parameter array corresponding to the circuit in which the gate is embedded |
Reimplemented from Gate.
Definition at line 3866 of file Gates_block.cpp.

| void Gates_block::fragment_circuit | ( | ) |
|
virtualinherited |
Compute the gate kernel matrix from precomputed trigonometric values.
Default gate_kernel: throws if not overridden.
Returns a 2x2 matrix for single-qubit (and controlled single-qubit) gates, or a 4x4 matrix for 2-qubit gates (RXX, RYY, RZZ, etc.). Zero-parameter gates ignore the precomputed_sincos argument.
| precomputed_sincos | Gate-local sin/cos table with shape (parameter_num, 2). |
Reimplemented in SYC, RXX, RYY, RZZ, CROT, U3, H, S, SDG, SX, SXdg, T, Tdg, X, Y, Z, CU, R, RX, RY, RZ, U1, and U2.
Definition at line 2546 of file Gate.cpp.

|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
inherited |
|
inherited |
|
inherited |
| Gates_block * Gates_block::get_flat_circuit | ( | ) |
Method to generate a flat circuit.
A flat circuit is a circuit does not containing subcircuits: there are no Gates_block instances (containing subcircuits) in the resulting circuit. If the original circuit contains subcircuits, the gates in the subcircuits are directly incorporated in the resulting flat circuit.
Definition at line 3828 of file Gates_block.cpp.


Call to get the gates stored in the class.
Call to get a gate stored in the class.
Definition at line 3229 of file Gates_block.cpp.

| int Gates_block::get_gate_num | ( | ) |
Call to get the number of gates grouped in the class.
Definition at line 2656 of file Gates_block.cpp.

| std::map< std::string, int > Gates_block::get_gate_nums | ( | ) |
Call to get the number of the individual gate types in the list of gates.
Definition at line 2630 of file Gates_block.cpp.


| std::vector< Gate * > Gates_block::get_gates | ( | ) |
Call to get the gates stored in the class.
(The resulting vector contains borrowed pointers to the gates, so they dont need to be deleted.)
Definition at line 3220 of file Gates_block.cpp.

Call to get the qubits involved in the gates stored in the block of gates.
Reimplemented from Gate.
Definition at line 3158 of file Gates_block.cpp.


|
overridevirtual |
Call to retrieve the gate matrix (Which is the product of all the gate matrices stored in the gate block)
Call to retrieve the operation matrix (Which is the product of all the operation matrices stored in the operation block)
| parameters | An array pointing to the parameters of the gates |
| parameters | An array pointing to the parameters of the gates |
Reimplemented from Gate.
Definition at line 193 of file Gates_block.cpp.


|
overridevirtual |
Call to retrieve the gate matrix (Which is the product of all the gate matrices stored in the gate block)
Call to retrieve the operation matrix (Which is the product of all the operation matrices stored in the operation block)
| parameters | An array pointing to the parameters of the gates |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
| parameters | An array pointing to the parameters of the gates |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
Reimplemented from Gate.
Definition at line 209 of file Gates_block.cpp.

| Matrix_float Gates_block::get_matrix | ( | Matrix_real_float & | parameters | ) |
|
overridevirtual |
Float32 overload: retrieve the gate matrix.
| parameters | Float32 parameter array |
| parallel | Set 0 for sequential execution, 1 for parallel execution with OpenMP and 2 for parallel with TBB (optional) |
Base implementation creates a float32 identity and applies the gate with parallel=0 to avoid any broken AVX path. Derived classes should override this.
| parameters | Float32 parameter array |
| parallel | Unused in the base implementation (always uses sequential path) |
Reimplemented from Gate.
Definition at line 238 of file Gates_block.cpp.

|
virtualinherited |
|
inherited |
| void Gates_block::get_parameter_max | ( | Matrix_real & | range_max | ) |
|
virtualinherited |
Returns the per-parameter multipliers relative to 2Ï used by extract_parameters.
Returns the per-parameter multipliers relative to 2Ï.
A multiplier of 2 means extracted = fmod(2*p, 4Ï); multiplier of 1 means fmod(p, 2Ï). Zero-parameter gates return an empty vector. Override in every parametric gate subclass.
Default implementation: empty (zero-parameter gate).
Reimplemented in RXX, RYY, RZZ, CROT, U3, CU, R, RX, RY, RZ, U1, and U2.
|
overridevirtual |
Call to get the number of free parameters.
Reimplemented from Gate.
Definition at line 2645 of file Gates_block.cpp.

|
inherited |
|
inherited |
|
inherited |
| Matrix Gates_block::get_reduced_density_matrix | ( | Matrix_real & | parameters_mtx, |
| Matrix & | input_state, | ||
| matrix_base< int > & | qbit_list_subset | ||
| ) |
Call to evaluate the reduced densiy matrix.
| parameters | An array of parameters to calculate the entropy |
| input_state | The input state on which the gate structure is applied |
| qbit_list | Subset of qubits for which the entropy should be calculated. (Should conatin unique elements) Returns with the reduced density matrix. |
Definition at line 3448 of file Gates_block.cpp.


| double Gates_block::get_second_Renyi_entropy | ( | Matrix_real & | parameters_mtx, |
| Matrix & | input_state, | ||
| matrix_base< int > & | qbit_list_subset | ||
| ) |
Call to evaluate the seconf Rényi entropy.
The quantum circuit is applied on an input state input. The entropy is evaluated for the transformed state.
| parameters | An array of parameters to calculate the entropy |
| input_state | The input state on which the gate structure is applied |
| qbit_list | Subset of qubits for which the entropy should be calculated. (Should conatin unique elements) Returns with the calculated entropy |
Definition at line 3625 of file Gates_block.cpp.


|
inherited |
|
inherited |
|
inherited |
Call to insert a gate at a given position.
| gate | A pointer to a class Gate describing a gate. |
| idx | The position where to insert the gate. |
Definition at line 2569 of file Gates_block.cpp.


|
protected |
Definition at line 121 of file Gates_block.cpp.


|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
| void Gates_block::list_gates | ( | const Matrix_real & | parameters, |
| int | start_index | ||
| ) |
Call to print the list of gates stored in the block of gates for a specific set of parameters.
| parameters | The parameters of the gates that should be printed. |
| start_index | The ordinal number of the first gate. |
Definition at line 2666 of file Gates_block.cpp.


|
protectedinherited |
|
protectedinherited |
|
inherited |
Call to print output messages in the function of the verbosity level.
| sstream | The stringstream input to store the output messages. |
| verbose_level | Integer input. High level means write more to the standart output, 0 means write nothing. The default value is set to 1. |
Definition at line 55 of file logging.cpp.
| void Gates_block::release_gate | ( | int | idx | ) |
Call to release one gate in the list.
Definition at line 168 of file Gates_block.cpp.


| void Gates_block::release_gates | ( | ) |
Call to release the stored gates.
Definition at line 146 of file Gates_block.cpp.


|
overridevirtual |
Call to reorder the qubits in the matrix of the gates (Obsolete function)
Call to reorder the qubits in the matrix of the gate (OBSOLETE function)
| qbit_list | The reordered list of qubits spanning the matrix |
Reimplemented from Gate.
Reimplemented in Decomposition_Base.
Definition at line 3140 of file Gates_block.cpp.


| void Gates_block::reset_dependency_graph | ( | ) |
Method to reset the dependency graph of the gates in the circuit.
Definition at line 3799 of file Gates_block.cpp.


| void Gates_block::reset_parameter_start_indices | ( | ) |
Method to reset the parameter start indices of gate operations incorporated in the circuit.
Method reset the parameter start indices of gate operations incorporated in the circuit.
(When a gate is inserted into the circuit at other position than the end.)
Definition at line 3778 of file Gates_block.cpp.


|
inherited |
|
inherited |
|
inherited |
|
inherited |
Call to set the debugfile name.
| debugfile | String variable. Set the debugfile name. |
Definition at line 95 of file logging.cpp.

|
inherited |
|
inherited |
| void Gates_block::set_min_fusion | ( | int | min_fusion | ) |
Definition at line 3264 of file Gates_block.cpp.


|
inherited |
|
inherited |
|
overridevirtual |
Set the number of qubits spanning the matrix of the gates stored in the block of gates.
| qbit_num_in | The number of qubits spanning the matrices. |
Reimplemented from Gate.
Reimplemented in Decomposition_Base.
Definition at line 3278 of file Gates_block.cpp.


|
inherited |
|
inherited |
|
inherited |
Call to set the verbose attribute.
| verbose_in | Integer variable. Set the number to specify the verbosity level for output messages. |
Definition at line 85 of file logging.cpp.

|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
inherited |
|
inherited |
|
protected |
Definition at line 56 of file Gates_block.h.
|
protected |
The list of stored gates.
Definition at line 49 of file Gates_block.h.
|
mutableprotected |
Definition at line 59 of file Gates_block.h.
|
mutableprotected |
Definition at line 61 of file Gates_block.h.
|
mutableprotected |
Definition at line 57 of file Gates_block.h.
|
mutableprotected |
Definition at line 60 of file Gates_block.h.
|
mutableprotected |
Definition at line 58 of file Gates_block.h.
|
protected |
number of gate layers
Definition at line 51 of file Gates_block.h.
|
protectedinherited |
|
protected |
maximal number of qubits in partitions
Definition at line 55 of file Gates_block.h.
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
inherited |
1.8.13