5#ifndef CPPPROJCT_GRAPH_TEST_SINGLESTEP_EVOLUTION_H
6#define CPPPROJCT_GRAPH_TEST_SINGLESTEP_EVOLUTION_H
8#include "test-imports.h"
14template <
int T,
typename GRAPHTYPE,
int BATCH,
typename DIFFEQ>
15void test_graph_singlestep_evolution(GRAPHTYPE &G,
21 adsync_message<T>(msg_prev +
"'test_" + name +
"_graph_singlestep_evolution'", G.g);
24 adsync_message<T>(msg_prev +
"'preparing "+name+
" graph for singlestep evolution'", G.g);
28 if (std::stoi(std::getenv(
"EQNUMBER")) == 0){
30 J = (double) std::stod(std::getenv(
"J"));
32 G.Initialization({{12.345, W0}}, J, G.g, G.N);
33 adsync_message_barrier<T>(msg_post +
"'preparing ring graph for singlestep evolution'", G.g);
37 adsync_message_barrier<T>(msg_prev +
"'reportNodes'", G.g);
39 adsync_message_barrier<T>(msg_post +
"'reportNodes'", G.g);
43 adsync_message<T>(msg_prev +
"'showVertex'", G.g);
45 adsync_message_barrier<T>(msg_post +
"'showVertex'", G.g);
47 unsigned long NVtot = boost::num_vertices(G.g);
48 CommunicationHelper ComHelper(G.g);
49 ParallelHelper ParHelper(ComHelper.NUM_THREADS, NVtot);
50 IntegrationHelper IntHelper(NVtot);
51 LayeredSolverHelper LayHelper(NVtot);
52 MappingHelper MapHelper(G.g);
54 ReferenceContainer REF(ParHelper,
69 adsync_message<T>(msg_prev +
"'single_eq_evolution' with euler (1 of 3)", G.g);
70 single_evolution<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
71 LayHelper.built =
true;
73 adsync_message_barrier<T>(msg_post +
"'single_eq_evolution' with euler (1 of 3)", G.g);
74 adsync_message<T>(msg_prev +
"'single_eq_evolution' with euler (2 of 3)", G.g);
76 single_evolution2<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
79 adsync_message_barrier<T>(msg_post +
"'single_eq_evolution' with euler (2 of 3)", G.g);
80 adsync_message<T>(msg_prev +
"'single_eq_evolution' with euler (3 of 3)", G.g);
82 single_evolution2<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
85 adsync_message_barrier<T>(msg_post +
"'single_eq_evolution' with euler (3 of 3)", G.g);
87 }
else if (SOLVER.s == 1) {
94 adsync_message<T>(msg_prev +
"'single_eq_evolution' with runge kutta (1 of 3)", G.g);
95 single_evolution<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
97 LayHelper.built =
true;
99 adsync_message_barrier<T>(msg_post +
"'single_eq_evolution' with runge kutta (1 of 3)", G.g);
100 adsync_message<T>(msg_prev +
"'single_eq_evolution' with runge kutta (2 of 3)", G.g);
102 single_evolution2<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
105 adsync_message_barrier<T>(msg_post +
"'single_eq_evolution' with runge kutta (2 of 3)", G.g);
106 adsync_message<T>(msg_prev +
"'single_eq_evolution' with runge kutta (3 of 3)", G.g);
108 single_evolution2<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
111 adsync_message_barrier<T>(msg_post +
"'single_eq_evolution' with runge kutta (3 of 3)", G.g);
115 adsync_message<T>(msg_prev +
"'showVertex'", G.g);
117 adsync_message_barrier<T>(msg_post +
"'showVertex'", G.g);
120 adsync_message<T>(msg_post +
"'test_" + name +
"_graph_singlestep_evolution'", G.g);
125template <
int BATCH,
typename EQCLASS>
126void graph_test_singlestep_evolution_helper(
unsigned int SEED,
unsigned long N,
SolverConfig &SOLVER,
int TOPOLOGY){
130 if ((TOPOLOGY == 2) || (TOPOLOGY == 3)) {
131 p = (double) std::stod(std::getenv(
"proba"));
133 if ((TOPOLOGY == 3)) {
134 K = (
unsigned long) std::stoul(std::getenv(
"kneigh"));
140 test_graph_singlestep_evolution<100, RingGraphObject, BATCH, EQCLASS>(G,
"Ring", SOLVER);
142 }
else if (TOPOLOGY == 1) {
145 test_graph_singlestep_evolution<100, CliqueGraphObject, BATCH, EQCLASS>(G,
"Clique", SOLVER);
147 }
else if (TOPOLOGY == 2) {
150 test_graph_singlestep_evolution<100, ErdosRenyiGraphObject, BATCH, EQCLASS>(G,
"ErdosRenyi", SOLVER);
152 }
else if (TOPOLOGY == 3) {
155 test_graph_singlestep_evolution<100, SmallWorldGraphObject, BATCH, EQCLASS>(G,
"SmallWorld", SOLVER);
157 }
else error_report(
"[ERROR] Requested topology does not exist!\n");
164void graph_tests_singlestep_evolution(
unsigned int SEED,
unsigned long N,
SolverConfig &SOLVER,
int TOPOLOGY,
int EQNUMBER){
166 reproductibility_lock(SEED);
168 graph_test_singlestep_evolution_helper<BATCH, NoiselessKuramoto>(SEED, N, SOLVER, TOPOLOGY);
169 }
else if (EQNUMBER == 1) {
170 graph_test_singlestep_evolution_helper<BATCH, LinearTestEquation>(SEED, N, SOLVER, TOPOLOGY);
172 printf(
"[FATAL] Required Equation does not exist!\n");
173 std::cout<<std::flush;
Definition: CliqueGraph.h:12
Definition: ErdosRenyiGraph.h:9
Definition: GeneralSolver.h:38
Definition: RingGraph.h:12
Definition: SmallWorldGraph.h:11
Definition: GeneralSolver.h:24