The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches
environment.cpp
1/** @file
2 * Unit tests of the environment module.
3 *
4 * @author Tyson Jones
5 *
6 * @defgroup unitenv Environment
7 * @ingroup unittests
8 */
9
10#include "quest/include/quest.h"
11
12#include <catch2/catch_test_macros.hpp>
13#include <catch2/matchers/catch_matchers_string.hpp>
14
15#include "tests/utils/qvector.hpp"
16#include "tests/utils/qmatrix.hpp"
17#include "tests/utils/compare.hpp"
18#include "tests/utils/convert.hpp"
19#include "tests/utils/evolve.hpp"
20#include "tests/utils/linalg.hpp"
21#include "tests/utils/lists.hpp"
22#include "tests/utils/macros.hpp"
23#include "tests/utils/random.hpp"
24
25using Catch::Matchers::ContainsSubstring;
26
27
28
29/*
30 * UTILITIES
31 */
32
33#define TEST_CATEGORY \
34 LABEL_UNIT_TAG "[environment]"
35
36
37
38/**
39 * TESTS
40 *
41 * @ingroup unitenv
42 * @{
43 */
44
45
46TEST_CASE( "initQuESTEnv", TEST_CATEGORY ) {
47
48 SECTION( LABEL_CORRECTNESS ) {
49
50 // cannot be meaningfully tested since env already active
51 SUCCEED( );
52 }
53
54 SECTION( LABEL_VALIDATION ) {
55
56 REQUIRE_THROWS_WITH( initQuESTEnv(), ContainsSubstring( "already been initialised") );
57 }
58}
59
60
61TEST_CASE( "initCustomQuESTEnv", TEST_CATEGORY ) {
62
63 SECTION( LABEL_CORRECTNESS ) {
64
65 // cannot be meaningfully tested since env already active
66 SUCCEED( );
67 }
68
69 SECTION( LABEL_VALIDATION ) {
70
71 REQUIRE_THROWS_WITH( initCustomQuESTEnv(0,0,0), ContainsSubstring( "already been initialised") );
72
73 // cannot check arguments since env-already-initialised
74 // validation is performed first
75 }
76}
77
78
79TEST_CASE( "finalizeQuESTEnv", TEST_CATEGORY ) {
80
81 SECTION( LABEL_CORRECTNESS ) {
82
83 // cannot be meaningfully tested since calling
84 // mid-tests will break subsequent testing
85 SUCCEED( );
86 }
87
88 SECTION( LABEL_VALIDATION ) {
89
90 // cannot be validated since calling it once
91 // is always valid but would break subsequent tests
92 SUCCEED( );
93 }
94}
95
96
97TEST_CASE( "syncQuESTEnv", TEST_CATEGORY ) {
98
99 SECTION( LABEL_CORRECTNESS ) {
100
101 // always legal to call
102 REQUIRE_NOTHROW( syncQuESTEnv() );
103 }
104
105 SECTION( LABEL_VALIDATION ) {
106
107 // cannot test validation (that env is already
108 // created) since we cannot call before initQuESTEnv
109 SUCCEED( );
110 }
111}
112
113
114TEST_CASE( "isQuESTEnvInit", TEST_CATEGORY ) {
115
116 SECTION( LABEL_CORRECTNESS ) {
117
118 // cannot test for other outcome
119 REQUIRE( isQuESTEnvInit() == 1 );
120 }
121
122 SECTION( LABEL_VALIDATION ) {
123
124 // performs no validation
125 SUCCEED( );
126 }
127}
128
129
130TEST_CASE( "getQuESTEnv", TEST_CATEGORY ) {
131
132 SECTION( LABEL_CORRECTNESS ) {
133
134 QuESTEnv env = getQuESTEnv();
135
136 REQUIRE( (env.isMultithreaded == 0 || env.isMultithreaded == 1) );
137 REQUIRE( (env.isGpuAccelerated == 0 || env.isGpuAccelerated == 1) );
138 REQUIRE( (env.isDistributed == 0 || env.isDistributed == 1) );
139
140 REQUIRE( env.rank >= 0 );
141 REQUIRE( env.numNodes >= 0 );
142
143 if (!env.isDistributed) {
144 REQUIRE( env.rank == 0 );
145 REQUIRE( env.numNodes == 1 );
146 }
147
148 bool isNumNodesPow2 = ((env.numNodes & (env.numNodes - 1)) == 0);
149 REQUIRE( isNumNodesPow2 );
150 }
151
152 SECTION( LABEL_VALIDATION ) {
153
154 // performs no validation
155 SUCCEED( );
156 }
157}
158
159
160/** @} (end defgroup) */
161
162
163
164/**
165 * @todo
166 * UNTESTED FUNCTIONS
167 */
168
169void reportQuESTEnv();
void reportQuESTEnv()
void initCustomQuESTEnv(int useDistrib, int useGpuAccel, int useMultithread)
QuESTEnv getQuESTEnv()
int isQuESTEnvInit()
void syncQuESTEnv()
void initQuESTEnv()
TEST_CASE("initQuESTEnv", TEST_CATEGORY)