The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches
environment.h
1/** @file
2 * API signatures for managing the QuEST
3 * execution environment.
4 *
5 * @author Tyson Jones
6 * @author Richard Meister (aided in design)
7 *
8 * @defgroup environment Environment
9 * @ingroup api
10 * @brief Data structures for managing the QuEST execution environment.
11 * @{
12 */
13
14#ifndef ENVIRONMENT_H
15#define ENVIRONMENT_H
16
17// enable invocation by both C and C++ binaries
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22
23
24/*
25 * QuESTEnv is a struct of which there will be a single, immutable
26 * main instance, statically instantiated inside environment.cpp,
27 * accessible anywhere via a getter, and which is consulted for
28 * determining the deployment configuration. Users can obtain a
29 * local copy of this struct with getQuESTEnv().
30 */
31
32/// @notdoced
33typedef struct {
34
35 // deployment mode
36 int isMultithreaded;
37 int isGpuAccelerated;
38 int isDistributed;
39
40 // distributed configuration
41 int rank;
42 int numNodes;
43
44} QuESTEnv;
45
46
47/// @notdoced
48void initQuESTEnv();
49
50/// @notdoced
51void initCustomQuESTEnv(int useDistrib, int useGpuAccel, int useMultithread);
52
53/// @notdoced
54void finalizeQuESTEnv();
55
56/// @notdoced
57void syncQuESTEnv();
58
59/// @notdoced
60/// @nottested
61void reportQuESTEnv();
62
63/// @notdoced
64int isQuESTEnvInit();
65
66/// @notdoced
68
69
70
71// end de-mangler
72#ifdef __cplusplus
73}
74#endif
75
76#endif // ENVIRONMENT_H
77
78/** @} (end doxygen defgroup) */
void reportQuESTEnv()
void finalizeQuESTEnv()
void initCustomQuESTEnv(int useDistrib, int useGpuAccel, int useMultithread)
QuESTEnv getQuESTEnv()
int isQuESTEnvInit()
void syncQuESTEnv()
void initQuESTEnv()