qsim:: SimulatorSSE

#include <simulator_sse.h>

Quantum circuit simulator with SSE vectorization.

Summary

Constructors and Destructors

SimulatorSSE (ForArgs &&... args)

Public types

State using
typename StateSpace::State
StateSpace using
fp_type using
typename StateSpace::fp_type

Public functions

ApplyControlledGate (const std::vector< unsigned > & qs, const std::vector< unsigned > & cqs, uint64_t cmask, const fp_type *matrix, State & state) const
void
Applies a controlled gate using SSE instructions.
ApplyGate (const std::vector< unsigned > & qs, const fp_type *matrix, State & state) const
void
Applies a gate using SSE instructions.
ExpectationValue (const std::vector< unsigned > & qs, const fp_type *matrix, const State & state) const
std::complex< double >
Computes the expectation value of an operator using SSE instructions.

Public static functions

SIMDRegisterSize ()
unsigned

Public types

State

typename StateSpace::State State

StateSpace

StateSpaceSSE< For > StateSpace

fp_type

typename StateSpace::fp_type fp_type

Public functions

ApplyControlledGate

void ApplyControlledGate(
  const std::vector< unsigned > & qs,
  const std::vector< unsigned > & cqs,
  uint64_t cmask,
  const fp_type *matrix,
  State & state
) const 

Applies a controlled gate using SSE instructions.

Details
Parameters
qs
Indices of the qubits affected by this gate.
cqs
Indices of control qubits.
cmask
Bit mask of control qubit values.
matrix
Matrix representation of the gate to be applied.
state
The state of the system, to be updated by this method.

ApplyGate

void ApplyGate(
  const std::vector< unsigned > & qs,
  const fp_type *matrix,
  State & state
) const 

Applies a gate using SSE instructions.

Details
Parameters
qs
Indices of the qubits affected by this gate.
matrix
Matrix representation of the gate to be applied.
state
The state of the system, to be updated by this method.

ExpectationValue

std::complex< double > ExpectationValue(
  const std::vector< unsigned > & qs,
  const fp_type *matrix,
  const State & state
) const 

Computes the expectation value of an operator using SSE instructions.

Details
Parameters
qs
Indices of the qubits the operator acts on.
matrix
The operator matrix.
state
The state of the system.
Returns
The computed expectation value.

SimulatorSSE

 SimulatorSSE(
  ForArgs &&... args
)

Public static functions

SIMDRegisterSize

unsigned SIMDRegisterSize()

Details
Returns
The size of SIMD register if applicable.