Skip to content

Commit

Permalink
TestOutput: add interger and complex grid array and grid scalar
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaas80 committed Dec 6, 2024
1 parent 10f7e44 commit 5a5e74c
Show file tree
Hide file tree
Showing 116 changed files with 770 additions and 19 deletions.
10 changes: 10 additions & 0 deletions TestOutput/interface.ccl
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,13 @@ CCTK_REAL sc TYPE=scalar
CCTK_REAL a1 TYPE=array DISTRIB=constant DIM=1 SIZE=10
CCTK_REAL a2 TYPE=array DISTRIB=constant DIM=2 SIZE=9,8
CCTK_REAL a3 TYPE=array DISTRIB=constant DIM=3 SIZE=7,6,5

CCTK_INT sc_int TYPE=scalar
CCTK_INT a1_int TYPE=array DISTRIB=constant DIM=1 SIZE=10
CCTK_INT a2_int TYPE=array DISTRIB=constant DIM=2 SIZE=9,8
CCTK_INT a3_int TYPE=array DISTRIB=constant DIM=3 SIZE=7,6,5

CCTK_COMPLEX sc_complex TYPE=scalar
CCTK_COMPLEX a1_complex TYPE=array DISTRIB=constant DIM=1 SIZE=10
CCTK_COMPLEX a2_complex TYPE=array DISTRIB=constant DIM=2 SIZE=9,8
CCTK_COMPLEX a3_complex TYPE=array DISTRIB=constant DIM=3 SIZE=7,6,5
28 changes: 28 additions & 0 deletions TestOutput/schedule.ccl
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Schedule definitions for thorn TestOutput

STORAGE: gf sc a1 a2 a3
STORAGE: sc_int a1_int a2_int a3_int
STORAGE: sc_complex a1_complex a2_complex a3_complex

SCHEDULE TestOutput_SetVarsLocal AT initial
{
LANG: C
Expand All @@ -22,6 +26,14 @@ SCHEDULE TestOutput_SetVarsGlobal AT initial
WRITES: a1(everywhere)
WRITES: a2(everywhere)
WRITES: a3(everywhere)
WRITES: sc_int(everywhere)
WRITES: a1_int(everywhere)
WRITES: a2_int(everywhere)
WRITES: a3_int(everywhere)
WRITES: sc_complex(everywhere)
WRITES: a1_complex(everywhere)
WRITES: a2_complex(everywhere)
WRITES: a3_complex(everywhere)
} "Set up global test variables"

SCHEDULE TestOutput_UpdateVarsLocal AT evol
Expand All @@ -40,8 +52,24 @@ SCHEDULE TestOutput_UpdateVarsGlobal AT evol
READS: a1(everywhere)
READS: a2(everywhere)
READS: a3(everywhere)
READS: sc_int(everywhere)
READS: a1_int(everywhere)
READS: a2_int(everywhere)
READS: a3_int(everywhere)
READS: sc_complex(everywhere)
READS: a1_complex(everywhere)
READS: a2_complex(everywhere)
READS: a3_complex(everywhere)
WRITES: sc(everywhere)
WRITES: a1(everywhere)
WRITES: a2(everywhere)
WRITES: a3(everywhere)
WRITES: sc_int(everywhere)
WRITES: a1_int(everywhere)
WRITES: a2_int(everywhere)
WRITES: a3_int(everywhere)
WRITES: sc_complex(everywhere)
WRITES: a1_complex(everywhere)
WRITES: a2_complex(everywhere)
WRITES: a3_complex(everywhere)
} "Update global test variables"
57 changes: 43 additions & 14 deletions TestOutput/src/TestOutput.cxx
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
#include <cctk.h>
#include <cctk_Arguments.h>

#include <loop_device.hxx>
#include <complex>

namespace TestOutput {

using namespace std::literals;

extern "C" void TestOutput_SetVarsLocal(CCTK_ARGUMENTS) {
DECLARE_CCTK_ARGUMENTSX_TestOutput_SetVarsLocal;

Expand All @@ -17,19 +23,31 @@ extern "C" void TestOutput_Sync(CCTK_ARGUMENTS) {
extern "C" void TestOutput_SetVarsGlobal(CCTK_ARGUMENTS) {
DECLARE_CCTK_ARGUMENTSX_TestOutput_SetVarsGlobal;

*sc = 42;
*sc = CCTK_REAL(42);
*sc_int = CCTK_INT(17);
*sc_complex = CCTK_COMPLEX(1 + M_PI) * 1i;

for (int i = 0; i < 10; ++i)
a1[i] = i;
for (int i = 0; i < 10; ++i) {
a1[i] = CCTK_REAL(i);
a1_int[i] = i + CCTK_INT(1);
a1_complex[i] = CCTK_COMPLEX(i + 2) + 1i;
}

for (int j = 0; j < 8; ++j)
for (int i = 0; i < 9; ++i)
a2[j * 9 + i] = 100 * j + i;
for (int i = 0; i < 9; ++i) {
a2[j * 9 + i] = CCTK_REAL(100 * j + i);
a2_int[j * 9 + i] = CCTK_INT(100 * j + i + 1);
a2_complex[j * 9 + i] = CCTK_COMPLEX(100 * j + i + 2) + 1i;
}

for (int k = 0; k < 5; ++k)
for (int j = 0; j < 6; ++j)
for (int i = 0; i < 7; ++i)
a3[(k * 6 + j) * 7 + i] = 10000 * k + 100 * j + i;
for (int i = 0; i < 7; ++i) {
a3[(k * 6 + j) * 7 + i] = CCTK_REAL(10000 * k + 100 * j + i);
a3_int[(k * 6 + j) * 7 + i] = CCTK_INT(10000 * k + 100 * j + i + 1);
a3_complex[(k * 6 + j) * 7 + i] =
CCTK_COMPLEX(10000 * k + 100 * j + i + 2) + 1i;
}
}

extern "C" void TestOutput_UpdateVarsLocal(CCTK_ARGUMENTS) {
Expand All @@ -46,19 +64,30 @@ extern "C" void TestOutput_UpdateVarsLocal(CCTK_ARGUMENTS) {
extern "C" void TestOutput_UpdateVarsGlobal(CCTK_ARGUMENTS) {
DECLARE_CCTK_ARGUMENTSX_TestOutput_UpdateVarsGlobal;

*sc += 1;
*sc += CCTK_REAL(1);
*sc_int += CCTK_INT(1);
*sc_complex += CCTK_COMPLEX(1) + 1i;

for (int i = 0; i < 10; ++i)
a1[i] += 1;
for (int i = 0; i < 10; ++i) {
a1[i] += CCTK_REAL(1);
a1_int[i] += CCTK_INT(1);
a1_complex[i] += CCTK_COMPLEX(1) + 1i;
}

for (int j = 0; j < 8; ++j)
for (int i = 0; i < 9; ++i)
a2[j * 9 + i] += 1;
for (int i = 0; i < 9; ++i) {
a2[j * 9 + i] += CCTK_REAL(1);
a2_int[j * 9 + i] += CCTK_INT(1);
a2_complex[j * 9 + i] += CCTK_COMPLEX(1) + 1i;
}

for (int k = 0; k < 5; ++k)
for (int j = 0; j < 6; ++j)
for (int i = 0; i < 7; ++i)
a3[(k * 6 + j) * 7 + i] += 1;
for (int i = 0; i < 7; ++i) {
a3[(k * 6 + j) * 7 + i] += CCTK_REAL(1);
a3_int[(k * 6 + j) * 7 + i] += CCTK_INT(1);
a3_complex[(k * 6 + j) * 7 + i] += CCTK_COMPLEX(1) + 1i;
}
}

} // namespace TestOutput
8 changes: 8 additions & 0 deletions TestOutput/test/checkpoint-openpmd.par
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ CarpetX::out_tsv_vars = "
TestOutput::a1
TestOutput::a2
TestOutput::a3
TestOutput::sc_int
TestOutput::a1_int
TestOutput::a2_int
TestOutput::a3_int
TestOutput::sc_complex
TestOutput::a1_complex
TestOutput::a2_complex
TestOutput::a3_complex
"

CarpetX::checkpoint_method = "openpmd"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 1:iteration 2:time 3:i 4:a1_complex.real 5:a1_complex.imag
0 0.0000000000000000e+00 0 2.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 1 3.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 2 4.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 3 5.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 4 6.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 5 7.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 6 8.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 7 9.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 8 1.0000000000000000e+01 1.0000000000000000e+00
0 0.0000000000000000e+00 9 1.1000000000000000e+01 1.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 1:iteration 2:time 3:i 4:a1_complex.real 5:a1_complex.imag
1 5.0000000000000000e-01 0 3.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 1 4.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 2 5.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 3 6.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 4 7.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 5 8.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 6 9.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 7 1.0000000000000000e+01 2.0000000000000000e+00
1 5.0000000000000000e-01 8 1.1000000000000000e+01 2.0000000000000000e+00
1 5.0000000000000000e-01 9 1.2000000000000000e+01 2.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 1:iteration 2:time 3:i 4:a1_int
0 0.0000000000000000e+00 0 1
0 0.0000000000000000e+00 1 2
0 0.0000000000000000e+00 2 3
0 0.0000000000000000e+00 3 4
0 0.0000000000000000e+00 4 5
0 0.0000000000000000e+00 5 6
0 0.0000000000000000e+00 6 7
0 0.0000000000000000e+00 7 8
0 0.0000000000000000e+00 8 9
0 0.0000000000000000e+00 9 10
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 1:iteration 2:time 3:i 4:a1_int
1 5.0000000000000000e-01 0 2
1 5.0000000000000000e-01 1 3
1 5.0000000000000000e-01 2 4
1 5.0000000000000000e-01 3 5
1 5.0000000000000000e-01 4 6
1 5.0000000000000000e-01 5 7
1 5.0000000000000000e-01 6 8
1 5.0000000000000000e-01 7 9
1 5.0000000000000000e-01 8 10
1 5.0000000000000000e-01 9 11
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 1:iteration 2:time 3:i 4:j 5:a2_complex.real 6:a2_complex.imag
0 0.0000000000000000e+00 0 0 2.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 1 0 3.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 2 0 4.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 3 0 5.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 4 0 6.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 5 0 7.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 6 0 8.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 7 0 9.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 8 0 1.0000000000000000e+01 1.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 1:iteration 2:time 3:i 4:j 5:a2_complex.real 6:a2_complex.imag
0 0.0000000000000000e+00 0 0 2.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 0 1 1.0200000000000000e+02 1.0000000000000000e+00
0 0.0000000000000000e+00 0 2 2.0200000000000000e+02 1.0000000000000000e+00
0 0.0000000000000000e+00 0 3 3.0200000000000000e+02 1.0000000000000000e+00
0 0.0000000000000000e+00 0 4 4.0200000000000000e+02 1.0000000000000000e+00
0 0.0000000000000000e+00 0 5 5.0200000000000000e+02 1.0000000000000000e+00
0 0.0000000000000000e+00 0 6 6.0200000000000000e+02 1.0000000000000000e+00
0 0.0000000000000000e+00 0 7 7.0200000000000000e+02 1.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 1:iteration 2:time 3:i 4:j 5:a2_complex.real 6:a2_complex.imag
1 5.0000000000000000e-01 0 0 3.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 1 0 4.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 2 0 5.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 3 0 6.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 4 0 7.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 5 0 8.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 6 0 9.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 7 0 1.0000000000000000e+01 2.0000000000000000e+00
1 5.0000000000000000e-01 8 0 1.1000000000000000e+01 2.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 1:iteration 2:time 3:i 4:j 5:a2_complex.real 6:a2_complex.imag
1 5.0000000000000000e-01 0 0 3.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 0 1 1.0300000000000000e+02 2.0000000000000000e+00
1 5.0000000000000000e-01 0 2 2.0300000000000000e+02 2.0000000000000000e+00
1 5.0000000000000000e-01 0 3 3.0300000000000000e+02 2.0000000000000000e+00
1 5.0000000000000000e-01 0 4 4.0300000000000000e+02 2.0000000000000000e+00
1 5.0000000000000000e-01 0 5 5.0300000000000000e+02 2.0000000000000000e+00
1 5.0000000000000000e-01 0 6 6.0300000000000000e+02 2.0000000000000000e+00
1 5.0000000000000000e-01 0 7 7.0300000000000000e+02 2.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 1:iteration 2:time 3:i 4:j 5:a2_int
0 0.0000000000000000e+00 0 0 1
0 0.0000000000000000e+00 1 0 2
0 0.0000000000000000e+00 2 0 3
0 0.0000000000000000e+00 3 0 4
0 0.0000000000000000e+00 4 0 5
0 0.0000000000000000e+00 5 0 6
0 0.0000000000000000e+00 6 0 7
0 0.0000000000000000e+00 7 0 8
0 0.0000000000000000e+00 8 0 9
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 1:iteration 2:time 3:i 4:j 5:a2_int
0 0.0000000000000000e+00 0 0 1
0 0.0000000000000000e+00 0 1 101
0 0.0000000000000000e+00 0 2 201
0 0.0000000000000000e+00 0 3 301
0 0.0000000000000000e+00 0 4 401
0 0.0000000000000000e+00 0 5 501
0 0.0000000000000000e+00 0 6 601
0 0.0000000000000000e+00 0 7 701
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 1:iteration 2:time 3:i 4:j 5:a2_int
1 5.0000000000000000e-01 0 0 2
1 5.0000000000000000e-01 1 0 3
1 5.0000000000000000e-01 2 0 4
1 5.0000000000000000e-01 3 0 5
1 5.0000000000000000e-01 4 0 6
1 5.0000000000000000e-01 5 0 7
1 5.0000000000000000e-01 6 0 8
1 5.0000000000000000e-01 7 0 9
1 5.0000000000000000e-01 8 0 10
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 1:iteration 2:time 3:i 4:j 5:a2_int
1 5.0000000000000000e-01 0 0 2
1 5.0000000000000000e-01 0 1 102
1 5.0000000000000000e-01 0 2 202
1 5.0000000000000000e-01 0 3 302
1 5.0000000000000000e-01 0 4 402
1 5.0000000000000000e-01 0 5 502
1 5.0000000000000000e-01 0 6 602
1 5.0000000000000000e-01 0 7 702
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_complex.real 7:a3_complex.imag
0 0.0000000000000000e+00 0 0 0 2.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 1 0 0 3.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 2 0 0 4.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 3 0 0 5.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 4 0 0 6.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 5 0 0 7.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 6 0 0 8.0000000000000000e+00 1.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_complex.real 7:a3_complex.imag
0 0.0000000000000000e+00 0 0 0 2.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 0 1 0 1.0200000000000000e+02 1.0000000000000000e+00
0 0.0000000000000000e+00 0 2 0 2.0200000000000000e+02 1.0000000000000000e+00
0 0.0000000000000000e+00 0 3 0 3.0200000000000000e+02 1.0000000000000000e+00
0 0.0000000000000000e+00 0 4 0 4.0200000000000000e+02 1.0000000000000000e+00
0 0.0000000000000000e+00 0 5 0 5.0200000000000000e+02 1.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_complex.real 7:a3_complex.imag
0 0.0000000000000000e+00 0 0 0 2.0000000000000000e+00 1.0000000000000000e+00
0 0.0000000000000000e+00 0 0 1 1.0002000000000000e+04 1.0000000000000000e+00
0 0.0000000000000000e+00 0 0 2 2.0002000000000000e+04 1.0000000000000000e+00
0 0.0000000000000000e+00 0 0 3 3.0002000000000000e+04 1.0000000000000000e+00
0 0.0000000000000000e+00 0 0 4 4.0002000000000000e+04 1.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_complex.real 7:a3_complex.imag
1 5.0000000000000000e-01 0 0 0 3.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 1 0 0 4.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 2 0 0 5.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 3 0 0 6.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 4 0 0 7.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 5 0 0 8.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 6 0 0 9.0000000000000000e+00 2.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_complex.real 7:a3_complex.imag
1 5.0000000000000000e-01 0 0 0 3.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 0 1 0 1.0300000000000000e+02 2.0000000000000000e+00
1 5.0000000000000000e-01 0 2 0 2.0300000000000000e+02 2.0000000000000000e+00
1 5.0000000000000000e-01 0 3 0 3.0300000000000000e+02 2.0000000000000000e+00
1 5.0000000000000000e-01 0 4 0 4.0300000000000000e+02 2.0000000000000000e+00
1 5.0000000000000000e-01 0 5 0 5.0300000000000000e+02 2.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_complex.real 7:a3_complex.imag
1 5.0000000000000000e-01 0 0 0 3.0000000000000000e+00 2.0000000000000000e+00
1 5.0000000000000000e-01 0 0 1 1.0003000000000000e+04 2.0000000000000000e+00
1 5.0000000000000000e-01 0 0 2 2.0003000000000000e+04 2.0000000000000000e+00
1 5.0000000000000000e-01 0 0 3 3.0003000000000000e+04 2.0000000000000000e+00
1 5.0000000000000000e-01 0 0 4 4.0003000000000000e+04 2.0000000000000000e+00
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_int
0 0.0000000000000000e+00 0 0 0 1
0 0.0000000000000000e+00 1 0 0 2
0 0.0000000000000000e+00 2 0 0 3
0 0.0000000000000000e+00 3 0 0 4
0 0.0000000000000000e+00 4 0 0 5
0 0.0000000000000000e+00 5 0 0 6
0 0.0000000000000000e+00 6 0 0 7
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_int
0 0.0000000000000000e+00 0 0 0 1
0 0.0000000000000000e+00 0 1 0 101
0 0.0000000000000000e+00 0 2 0 201
0 0.0000000000000000e+00 0 3 0 301
0 0.0000000000000000e+00 0 4 0 401
0 0.0000000000000000e+00 0 5 0 501
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_int
0 0.0000000000000000e+00 0 0 0 1
0 0.0000000000000000e+00 0 0 1 10001
0 0.0000000000000000e+00 0 0 2 20001
0 0.0000000000000000e+00 0 0 3 30001
0 0.0000000000000000e+00 0 0 4 40001
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_int
1 5.0000000000000000e-01 0 0 0 2
1 5.0000000000000000e-01 1 0 0 3
1 5.0000000000000000e-01 2 0 0 4
1 5.0000000000000000e-01 3 0 0 5
1 5.0000000000000000e-01 4 0 0 6
1 5.0000000000000000e-01 5 0 0 7
1 5.0000000000000000e-01 6 0 0 8
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_int
1 5.0000000000000000e-01 0 0 0 2
1 5.0000000000000000e-01 0 1 0 102
1 5.0000000000000000e-01 0 2 0 202
1 5.0000000000000000e-01 0 3 0 302
1 5.0000000000000000e-01 0 4 0 402
1 5.0000000000000000e-01 0 5 0 502
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 1:iteration 2:time 3:i 4:j 5:k 6:a3_int
1 5.0000000000000000e-01 0 0 0 2
1 5.0000000000000000e-01 0 0 1 10002
1 5.0000000000000000e-01 0 0 2 20002
1 5.0000000000000000e-01 0 0 3 30002
1 5.0000000000000000e-01 0 0 4 40002
Loading

0 comments on commit 5a5e74c

Please sign in to comment.