NEDISS: Network Diffusion and Synchronization Simulator
graph-test-singlestep-evolution.h
1//
2// Created by m4zz31 on 31/10/21.
3//
4
5#ifndef CPPPROJCT_GRAPH_TEST_SINGLESTEP_EVOLUTION_H
6#define CPPPROJCT_GRAPH_TEST_SINGLESTEP_EVOLUTION_H
7
8#include "test-imports.h"
9
10// TODO: inherit part of SimulationPipe as to not repeat things... after all,
11// this is just a glorified simulation of one step with prints :-) and we will
12// avoid doubling all the graph subtypes and solvers and eqs etc.
13
14template <int T, typename GRAPHTYPE, int BATCH, typename DIFFEQ>
15void test_graph_singlestep_evolution(GRAPHTYPE &G,
16 std::string name,
17 SolverConfig &SOLVER) {
18
19
20 // Print in command what test is it
21 adsync_message<T>(msg_prev + "'test_" + name + "_graph_singlestep_evolution'", G.g);
22
23 // Preprocessing
24 adsync_message<T>(msg_prev + "'preparing "+name+" graph for singlestep evolution'", G.g);
25 G.build();
26 double J = 3.14;
27 double W0 = 6.78;
28 if (std::stoi(std::getenv("EQNUMBER")) == 0){
29 // If it is kuramoto, get the coupling strength from the environment variables
30 J = (double) std::stod(std::getenv("J"));
31 }
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);
34
35
36 // Show the total number of created nodes
37 adsync_message_barrier<T>(msg_prev + "'reportNodes'", G.g);
38 G.reportNodes(G.g);
39 adsync_message_barrier<T>(msg_post + "'reportNodes'", G.g);
40
41
42 // Show nodes
43 adsync_message<T>(msg_prev + "'showVertex'", G.g);
44 G.showVertex(G.g);
45 adsync_message_barrier<T>(msg_post + "'showVertex'", G.g);
46
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);
53
54 ReferenceContainer REF(ParHelper,
55 ComHelper,
56 G.g,
57 IntHelper,
58 MapHelper,
59 LayHelper,
60 NVtot);
61
62
63 if (SOLVER.s == 0) {
65 S_eu.SetT0(0);
66 S_eu.SetStep(0.01);
67
68 // Test several eq evolutions with Euler
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;
72 S_eu.EvolveTime();
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);
75 //single_evolution<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
76 single_evolution2<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
77
78 S_eu.EvolveTime();
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);
81 //single_evolution<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
82 single_evolution2<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
83
84 S_eu.EvolveTime();
85 adsync_message_barrier<T>(msg_post + "'single_eq_evolution' with euler (3 of 3)", G.g);
86
87 } else if (SOLVER.s == 1) {
88
89 GeneralSolver<DIFFEQ, RungeKuttaSolver<DIFFEQ>> S_rk("rk",SOLVER.d, &(SOLVER.P[0])) ;
90 S_rk.SetT0(0);
91 S_rk.SetStep(0.01);
92
93 // Test several eq evolutions with RungeKutta
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);
96
97 LayHelper.built = true;
98 S_rk.EvolveTime();
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);
101 //single_evolution<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
102 single_evolution2<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
103
104 S_rk.EvolveTime();
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);
107 //single_evolution<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
108 single_evolution2<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
109
110 S_rk.EvolveTime();
111 adsync_message_barrier<T>(msg_post + "'single_eq_evolution' with runge kutta (3 of 3)", G.g);
112 }
113
114 // Show nodes
115 adsync_message<T>(msg_prev + "'showVertex'", G.g);
116 G.showVertex(G.g);
117 adsync_message_barrier<T>(msg_post + "'showVertex'", G.g);
118
119 // Print in command what test is it and inform that it has ended
120 adsync_message<T>(msg_post + "'test_" + name + "_graph_singlestep_evolution'", G.g);
121}
122
123
124
125template <int BATCH, typename EQCLASS>
126void graph_test_singlestep_evolution_helper(unsigned int SEED, unsigned long N, SolverConfig &SOLVER, int TOPOLOGY){
127
128 unsigned long K;
129 double p;
130 if ((TOPOLOGY == 2) || (TOPOLOGY == 3)) {
131 p = (double) std::stod(std::getenv("proba"));
132 }
133 if ((TOPOLOGY == 3)) {
134 K = (unsigned long) std::stoul(std::getenv("kneigh"));
135 }
136
137 if (TOPOLOGY == 0) {
138 // Ring Network
139 RingGraphObject G(N);
140 test_graph_singlestep_evolution<100, RingGraphObject, BATCH, EQCLASS>(G, "Ring", SOLVER);
141
142 } else if (TOPOLOGY == 1) {
143 // Clique Network
145 test_graph_singlestep_evolution<100, CliqueGraphObject, BATCH, EQCLASS>(G, "Clique", SOLVER);
146
147 } else if (TOPOLOGY == 2) {
148 // Erdos Renyi Network
149 ErdosRenyiGraphObject G(N, p);
150 test_graph_singlestep_evolution<100, ErdosRenyiGraphObject, BATCH, EQCLASS>(G, "ErdosRenyi", SOLVER);
151
152 } else if (TOPOLOGY == 3) {
153 // Small World Network
154 SmallWorldGraphObject G(N, K, p);
155 test_graph_singlestep_evolution<100, SmallWorldGraphObject, BATCH, EQCLASS>(G, "SmallWorld", SOLVER);
156
157 } else error_report("[ERROR] Requested topology does not exist!\n");
158
159}
160
161
162
163template <int BATCH>
164void graph_tests_singlestep_evolution(unsigned int SEED, unsigned long N, SolverConfig &SOLVER, int TOPOLOGY, int EQNUMBER){
165
166 reproductibility_lock(SEED);
167 if (EQNUMBER == 0){
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);
171 } else {
172 printf("[FATAL] Required Equation does not exist!\n");
173 std::cout<<std::flush;
174 exit(1);
175 }
176}
177
178
179
180#endif //CPPPROJCT_GRAPH_TEST_SINGLESTEP_EVOLUTION_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