NEDISS: Network Diffusion and Synchronization Simulator
long-singlestep-run.h
1//
2// Created by m4zz31 on 7/11/21.
3//
4
5#ifndef CPPPROJCT_LONG_SINGLESTEP_RUN_H
6#define CPPPROJCT_LONG_SINGLESTEP_RUN_H
7
8#include "test-imports.h"
9
10
11template <int T, typename GRAPHTYPE, int BATCH, typename DIFFEQ>
12void test_long_singlestep_run(GRAPHTYPE &G, std::string name,
13 int NRUNS,
14 SolverConfig &SOLVER) {
15
16 // Print in command what test is it
17 adsync_message<T>(msg_prev + "'test_" + name + "_graph_singlestep_evolution'", G.g);
18
19 // Preprocessing
20 adsync_message<T>(msg_prev + "'preparing " + name + " graph for singlestep evolution'", G.g);
21 G.build();
22 double J = 3.14;
23 double W0 = 6.78;
24 if (std::stoi(std::getenv("EQNUMBER")) == 0){
25 // If it is kuramoto, get the coupling strength from the environment variables
26 J = (double) std::stod(std::getenv("J"));
27 }
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);
30
31 adsync_message<T>(msg_prev + "'showVertex'", G.g);
32 G.showVertex(G.g);
33 adsync_message_barrier<T>(msg_post + "'showVertex'", G.g);
34
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);
41
42 ReferenceContainer REF(ParHelper,
43 ComHelper,
44 G.g,
45 IntHelper,
46 MapHelper,
47 LayHelper,
48 NVtot);
49
50 if (SOLVER.s == 0) {
52 S_eu.SetT0(0);
53 S_eu.SetStep(0.01);
54 for (int i = 0; i < NRUNS; i++) {
55 if (i==0){
56 single_evolution<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
57 } else {
58 single_evolution2<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
59 }
60 if (i==0) LayHelper.built = true;
61 S_eu.EvolveTime();
62 }
63 } else if (SOLVER.s == 1) {
64 GeneralSolver<DIFFEQ, RungeKuttaSolver<DIFFEQ>> S_rk("rk", SOLVER.d, &SOLVER.P[0]);
65 S_rk.SetT0(0);
66 S_rk.SetStep(0.01);
67 for (int i = 0; i < NRUNS; i++) {
68 if (i==0) {
69 single_evolution<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
70 } else {
71 single_evolution2<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
72 }
73 if (i==0) LayHelper.built = true;
74 S_rk.EvolveTime();
75 }
76 } else error_report("Requested solver does not exist\n");
77
78 adsync_message<T>(msg_prev + "'showVertex'", G.g);
79 G.showVertex(G.g);
80 adsync_message_barrier<T>(msg_post + "'showVertex'", G.g);
81}
82
83
84template <int BATCH, typename EQCLASS>
85void central_test_long_singlestep_run_helper(unsigned int SEED, unsigned long N, int NRUNS, SolverConfig &SOLVER, int TOPOLOGY){
86
87 unsigned long K;
88 double p;
89 if ((TOPOLOGY == 2) || (TOPOLOGY == 3)) {
90 p = (double) std::stod(std::getenv("proba"));
91 }
92 if ((TOPOLOGY == 3)) {
93 K = (unsigned long) std::stoul(std::getenv("kneigh"));
94 }
95
96 if (TOPOLOGY == 0){
97 RingGraphObject G(N);
98 test_long_singlestep_run<100, RingGraphObject, BATCH, EQCLASS>(G, "Ring",
99 NRUNS,
100 SOLVER);
101 } else if (TOPOLOGY == 1) {
103 test_long_singlestep_run<100, CliqueGraphObject, BATCH, EQCLASS>(G, "Clique",
104 NRUNS,
105 SOLVER);
106 } else if (TOPOLOGY == 2) {
107 ErdosRenyiGraphObject G(N, p);
108 test_long_singlestep_run<100, ErdosRenyiGraphObject, BATCH, EQCLASS>(G, "ErdosRenyi",
109 NRUNS,
110 SOLVER);
111 } else if (TOPOLOGY == 3) {
112 SmallWorldGraphObject G(N, K, p);
113 test_long_singlestep_run<100, SmallWorldGraphObject, BATCH, EQCLASS>(G, "SmallWorld",
114 NRUNS,
115 SOLVER);
116 } else error_report("Requested ring topology does not exist!\n");
117
118}
119
120
121template <int BATCH>
122void central_test_long_singlestep_run(unsigned int SEED, unsigned long N, int NRUNS, SolverConfig &SOLVER, int TOPOLOGY, int EQNUMBER){
123 // Ring Network
124 reproductibility_lock(SEED);
125
126 if (EQNUMBER == 0){
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);
130 } else {
131 printf("[FATAL] Required Equation does not exist!\n");
132 std::cout<<std::flush;
133 exit(1);
134 }
135
136};
137
138#endif //CPPPROJCT_LONG_SINGLESTEP_RUN_H
Definition: CliqueGraph.h:12
Definition: ErdosRenyiGraph.h:9
Definition: GeneralSolver.h:38
Definition: RingGraph.h:12
Definition: SmallWorldGraph.h:11
Definition: GeneralSolver.h:24