5#ifndef CPPPROJCT_LONG_SINGLESTEP_RUN_H
6#define CPPPROJCT_LONG_SINGLESTEP_RUN_H
8#include "test-imports.h"
11template <
int T,
typename GRAPHTYPE,
int BATCH,
typename DIFFEQ>
12void test_long_singlestep_run(GRAPHTYPE &G, std::string name,
17 adsync_message<T>(msg_prev +
"'test_" + name +
"_graph_singlestep_evolution'", G.g);
20 adsync_message<T>(msg_prev +
"'preparing " + name +
" graph for singlestep evolution'", G.g);
24 if (std::stoi(std::getenv(
"EQNUMBER")) == 0){
26 J = (double) std::stod(std::getenv(
"J"));
28 G.Initialization({{12.345, W0}}, J, G.g, G.N);
29 adsync_message_barrier<T>(msg_post +
"'preparing ring graph for singlestep evolution'", G.g);
31 adsync_message<T>(msg_prev +
"'showVertex'", G.g);
33 adsync_message_barrier<T>(msg_post +
"'showVertex'", G.g);
35 unsigned long NVtot = boost::num_vertices(G.g);
36 CommunicationHelper ComHelper(G.g);
37 ParallelHelper ParHelper(ComHelper.NUM_THREADS, NVtot);
38 IntegrationHelper IntHelper(NVtot);
39 LayeredSolverHelper LayHelper(NVtot);
40 MappingHelper MapHelper(G.g);
42 ReferenceContainer REF(ParHelper,
54 for (
int i = 0; i < NRUNS; i++) {
56 single_evolution<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
58 single_evolution2<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
60 if (i==0) LayHelper.built =
true;
63 }
else if (SOLVER.s == 1) {
67 for (
int i = 0; i < NRUNS; i++) {
69 single_evolution<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
71 single_evolution2<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
73 if (i==0) LayHelper.built =
true;
76 }
else error_report(
"Requested solver does not exist\n");
78 adsync_message<T>(msg_prev +
"'showVertex'", G.g);
80 adsync_message_barrier<T>(msg_post +
"'showVertex'", G.g);
84template <
int BATCH,
typename EQCLASS>
85void central_test_long_singlestep_run_helper(
unsigned int SEED,
unsigned long N,
int NRUNS,
SolverConfig &SOLVER,
int TOPOLOGY){
89 if ((TOPOLOGY == 2) || (TOPOLOGY == 3)) {
90 p = (double) std::stod(std::getenv(
"proba"));
92 if ((TOPOLOGY == 3)) {
93 K = (
unsigned long) std::stoul(std::getenv(
"kneigh"));
98 test_long_singlestep_run<100, RingGraphObject, BATCH, EQCLASS>(G,
"Ring",
101 }
else if (TOPOLOGY == 1) {
103 test_long_singlestep_run<100, CliqueGraphObject, BATCH, EQCLASS>(G,
"Clique",
106 }
else if (TOPOLOGY == 2) {
108 test_long_singlestep_run<100, ErdosRenyiGraphObject, BATCH, EQCLASS>(G,
"ErdosRenyi",
111 }
else if (TOPOLOGY == 3) {
113 test_long_singlestep_run<100, SmallWorldGraphObject, BATCH, EQCLASS>(G,
"SmallWorld",
116 }
else error_report(
"Requested ring topology does not exist!\n");
122void central_test_long_singlestep_run(
unsigned int SEED,
unsigned long N,
int NRUNS,
SolverConfig &SOLVER,
int TOPOLOGY,
int EQNUMBER){
124 reproductibility_lock(SEED);
127 central_test_long_singlestep_run_helper<BATCH, NoiselessKuramoto>(SEED, N,NRUNS, SOLVER, TOPOLOGY);
128 }
else if (EQNUMBER == 1) {
129 central_test_long_singlestep_run_helper<BATCH, LinearTestEquation>(SEED, N, NRUNS, SOLVER, TOPOLOGY);
131 printf(
"[FATAL] Required Equation does not exist!\n");
132 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