The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches
Constructors

Functions for creating statevectors and density matrices. More...

Functions

Qureg createCloneQureg (Qureg qureg)
 
Qureg createCustomQureg (int numQubits, int isDensMatr, int useDistrib, int useGpuAccel, int useMultithread)
 
Qureg createDensityQureg (int numQubits)
 
Qureg createForcedDensityQureg (int numQubits)
 
Qureg createForcedQureg (int numQubits)
 
Qureg createQureg (int numQubits)
 

Detailed Description

Functions for creating statevectors and density matrices.

Function Documentation

◆ createCloneQureg()

Qureg createCloneQureg ( Qureg qureg)
Note
Documentation for this function or struct is under construction!

Definition at line 313 of file qureg.cpp.

313 {
314 validate_quregFields(qureg, __func__);
315
316 // create a new Qureg with identical fields, but zero'd memory
317 Qureg clone = validateAndCreateCustomQureg(
318 qureg.numQubits, qureg.isDensityMatrix, qureg.isDistributed,
319 qureg.isGpuAccelerated, qureg.isMultithreaded, __func__);
320
321 setQuregToClone(clone, qureg); // harmlessly re-validates
322
323 // if GPU-accelerated, clone's CPU amps are NOT updated
324 return clone;
325}
void setQuregToClone(Qureg targetQureg, Qureg copyQureg)
Definition qureg.h:42

Referenced by TEST_CASE(), and TEST_CASE().

◆ createCustomQureg()

Qureg createCustomQureg ( int numQubits,
int isDensMatr,
int useDistrib,
int useGpuAccel,
int useMultithread )
Note
Documentation for this function or struct is under construction!

Definition at line 271 of file qureg.cpp.

271 {
272
273 return validateAndCreateCustomQureg(numQubits, isDensMatr, useDistrib, useGpuAccel, useMultithread, __func__);
274}

Referenced by TEST_CASE().

◆ createDensityQureg()

Qureg createDensityQureg ( int numQubits)
Note
Documentation for this function or struct is under construction!

Definition at line 285 of file qureg.cpp.

285 {
286
287 int isDensMatr = 1;
288 int autoMode = modeflag::USE_AUTO;
289 return validateAndCreateCustomQureg(numQubits, isDensMatr, autoMode, autoMode, autoMode, __func__);
290}

Referenced by TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), and TEST_CASE().

◆ createForcedDensityQureg()

Qureg createForcedDensityQureg ( int numQubits)
Note
Documentation for this function or struct is under construction!

Definition at line 303 of file qureg.cpp.

303 {
304 validate_envIsInit(__func__);
305
306 QuESTEnv env = getQuESTEnv();
307
308 int isDensMatr = 1;
309 return validateAndCreateCustomQureg(numQubits, isDensMatr, env.isDistributed, env.isGpuAccelerated, env.isMultithreaded, __func__);
310}
QuESTEnv getQuESTEnv()

Referenced by TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), and TEST_CASE().

◆ createForcedQureg()

Qureg createForcedQureg ( int numQubits)
Note
Documentation for this function or struct is under construction!

Definition at line 293 of file qureg.cpp.

293 {
294 validate_envIsInit(__func__);
295
296 QuESTEnv env = getQuESTEnv();
297
298 int isDensMatr = 0;
299 return validateAndCreateCustomQureg(numQubits, isDensMatr, env.isDistributed, env.isGpuAccelerated, env.isMultithreaded, __func__);
300}

Referenced by TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), and TEST_CASE().

◆ createQureg()

Qureg createQureg ( int numQubits)
Note
Documentation for this function or struct is under construction!

Definition at line 277 of file qureg.cpp.

277 {
278
279 int isDensMatr = 0;
280 int autoMode = modeflag::USE_AUTO;
281 return validateAndCreateCustomQureg(numQubits, isDensMatr, autoMode, autoMode, autoMode, __func__);
282}

Referenced by TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), TEST_CASE(), and TEST_CASE().