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

Data structures for managing the QuEST execution environment. More...

Classes

struct  QuESTEnv
 

Functions

void finalizeQuESTEnv ()
 
QuESTEnv getQuESTEnv ()
 
void initCustomQuESTEnv (int useDistrib, int useGpuAccel, int useMultithread)
 
void initQuESTEnv ()
 
int isQuESTEnvInit ()
 
void reportQuESTEnv ()
 
void syncQuESTEnv ()
 

Detailed Description

Data structures for managing the QuEST execution environment.

Function Documentation

◆ finalizeQuESTEnv()

void finalizeQuESTEnv ( )
Note
Documentation for this function or struct is under construction!

Definition at line 416 of file environment.cpp.

416 {
417 validate_envIsInit(__func__);
418
419 // NOTE:
420 // calling this will not automatically
421 // free the memory of existing Quregs
422
423 if (globalEnvPtr->isGpuAccelerated)
424 gpu_clearCache(); // syncs first
425
426 if (globalEnvPtr->isGpuAccelerated && gpu_isCuQuantumCompiled())
427 gpu_finalizeCuQuantum();
428
429 if (globalEnvPtr->isDistributed) {
430 comm_sync();
431 comm_end();
432 }
433
434 // free global env's heap memory and flag it as unallocated
435 free(globalEnvPtr);
436 globalEnvPtr = nullptr;
437
438 // flag that the environment was finalised, to ensure it is never re-initialised
439 hasEnvBeenFinalized = true;
440}

◆ getQuESTEnv()

QuESTEnv getQuESTEnv ( )
Note
Documentation for this function or struct is under construction!

Definition at line 408 of file environment.cpp.

408 {
409 validate_envIsInit(__func__);
410
411 // returns a copy, so cheeky users calling memcpy() upon const struct still won't mutate
412 return *globalEnvPtr;
413}

Referenced by clearGpuCache(), createCompMatr(), createDiagMatr(), createForcedDensityQureg(), createForcedQureg(), deleteFilesWithPrefixSynch(), getEnvironmentString(), getGpuCacheSize(), 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 writeToFileSynch().

◆ initCustomQuESTEnv()

void initCustomQuESTEnv ( int useDistrib,
int useGpuAccel,
int useMultithread )
Note
Documentation for this function or struct is under construction!

Definition at line 390 of file environment.cpp.

390 {
391
392 validateAndInitCustomQuESTEnv(useDistrib, useGpuAccel, useMultithread, __func__);
393}

◆ initQuESTEnv()

void initQuESTEnv ( )
Note
Documentation for this function or struct is under construction!

Definition at line 396 of file environment.cpp.

396 {
397
398 validateAndInitCustomQuESTEnv(modeflag::USE_AUTO, modeflag::USE_AUTO, modeflag::USE_AUTO, __func__);
399}

Referenced by TEST_CASE().

◆ isQuESTEnvInit()

int isQuESTEnvInit ( )
Note
Documentation for this function or struct is under construction!

Definition at line 402 of file environment.cpp.

402 {
403
404 return (int) (globalEnvPtr != nullptr);
405}

◆ reportQuESTEnv()

void reportQuESTEnv ( )
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

Definition at line 454 of file environment.cpp.

454 {
455 validate_envIsInit(__func__);
456 validate_numReportedNewlinesAboveZero(__func__); // because trailing newline mandatory
457
458 /// @todo add function to write this output to file (useful for HPC debugging)
459
460 print_label("QuEST execution environment");
461
462 bool statevec = false;
463 bool densmatr = true;
464
465 // we attempt to report properties of available hardware facilities
466 // (e.g. number of CPU cores, number of GPUs) even if the environment is not
467 // making use of them, to inform the user how they might change deployment.
468 printPrecisionInfo();
469 printCompilationInfo();
470 printDeploymentInfo();
471 printCpuInfo();
472 printGpuInfo();
473 printDistributionInfo();
474 printQuregSizeLimits(statevec);
475 printQuregSizeLimits(densmatr);
476 printQuregAutoDeployments(statevec);
477 printQuregAutoDeployments(densmatr);
478
479 // exclude mandatory newline above
480 print_oneFewerNewlines();
481}

◆ syncQuESTEnv()

void syncQuESTEnv ( )
Note
Documentation for this function or struct is under construction!

Definition at line 443 of file environment.cpp.

443 {
444 validate_envIsInit(__func__);
445
446 if (globalEnvPtr->isGpuAccelerated)
447 gpu_sync();
448
449 if (globalEnvPtr->isDistributed)
450 comm_sync();
451}

Referenced by areEqual(), areEqual(), areEqual(), deleteFilesWithPrefixSynch(), toQMatrix(), toQureg(), toQureg(), toQVector(), and writeToFileSynch().