Skip to content

Commit

Permalink
Initialise packets (#139)
Browse files Browse the repository at this point in the history
No change to observables (uninitialised fields are not valid or accessed
except to write to packets*.out) , but affects the reproducibility of
results on the CI system.
  • Loading branch information
lukeshingles authored Oct 28, 2024
1 parent 1bfd077 commit 8cd920b
Show file tree
Hide file tree
Showing 26 changed files with 98 additions and 103 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:

- name: Checksum job0 output files
#if: always()
if: always() && matrix.testmode == 'OFF'
if: always()
working-directory: tests/${{ matrix.testname }}_testrun
run: |
md5sum *.out job0/*.out | tee ../${{ matrix.testname }}_inputfiles/results_md5_job0.txt
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
- name: Checksum job1 output files
#if: always()
if: always() && matrix.testmode == 'OFF'
if: always()
working-directory: tests/${{ matrix.testname }}_testrun
run: |
md5sum *.out job1/*.out | tee ../${{ matrix.testname }}_inputfiles/results_md5_final.txt
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ CXXFLAGS += -std=c++20 -fstrict-aliasing
# CXXFLAGS += -DUSE_SIMPSON_INTEGRATOR=true

ifneq ($(COMPILER_NAME),NVHPC)
CXXFLAGS += -ftree-vectorize -Wunused-macros -Werror -Wno-error=unknown-pragmas -MD -MP
# add -ftrivial-auto-var-init=zero when we drop gcc 11 support
CXXFLAGS += -ftree-vectorize -Wunused-macros -Werror -Wno-error=unknown-pragmas -MD -MP -ftrivial-auto-var-init=pattern
endif

# profile-guided optimisation
Expand Down
6 changes: 1 addition & 5 deletions packet.cc
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,10 @@ void packet_init(Packet *pkt)

// Now place the pellets in the ejecta and decide at what time they will decay.

if (globals::npkts > MPKTS) {
printout("Too many packets. Abort.\n");
std::abort();
}

printout("Placing pellets...\n");
auto allpkts = std::ranges::iota_view{0, globals::npkts};
std::ranges::for_each(allpkts, [&, norm, e0](const int n) {
pkt[n] = Packet{};
const double targetval = rng_uniform() * norm;

// first i such that en_cumulative[i] > targetval
Expand Down
4 changes: 2 additions & 2 deletions sn3d.cc
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ auto main(int argc, char *argv[]) -> int {
}
}

auto *const packets = static_cast<Packet *>(malloc(MPKTS * sizeof(Packet)));
auto *const packets = static_cast<Packet *>(malloc(globals::npkts * sizeof(Packet)));

assert_always(packets != nullptr);

Expand Down Expand Up @@ -965,7 +965,7 @@ auto main(int argc, char *argv[]) -> int {
printout("Simulation propagates %g packets per process (total %g with nprocs %d)\n", 1. * globals::npkts,
1. * globals::npkts * globals::nprocs, globals::nprocs);

printout("[info] mem_usage: packets occupy %.3f MB\n", MPKTS * sizeof(Packet) / 1024. / 1024.);
printout("[info] mem_usage: packets occupy %.3f MB\n", globals::npkts * sizeof(Packet) / 1024. / 1024.);

if (!globals::simulation_continued_from_saved) {
std::remove("deposition.out");
Expand Down
8 changes: 4 additions & 4 deletions tests/classicmode_1d_3dgrid_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ ec53538474a3c9eec9d51a350b001d3a gamma_light_curve.out
5e818206372ff62ae5169fdb651106a5 light_curve.out
87aa0a1a8eebc5b15f95c5c7ba6325a3 linestat.out
41a1c375110d8edbf421edca3fc426e8 modelgridrankassignments.out
5ef844f385730d21db8d38f3ec342245 packets00_0000.out
37240a677a12c756e8ab376c82cf06a5 packets00_0001.out
e9a40a0e47d3bc0a2330fbe241142329 packets00_0002.out
5ff5f79e130997cfa8e9328e17801cf1 packets00_0003.out
c5f4648200998cf8a12a8bc4247d00f4 packets00_0000.out
f2e4cf2ce9f04a7159a539004d207a79 packets00_0001.out
992116649007c727a6ffb33f6badb7aa packets00_0002.out
49a84d0bccf30eaaf440ebe023baed44 packets00_0003.out
73d1c7f4c7d4e005618a41022554aeaf spec.out
a41ca549452afa07ffe4bbd2aabe91f5 specpol.out
bc01f046eab9bf3802149e0ff63d5069 timesteps.out
Expand Down
8 changes: 4 additions & 4 deletions tests/classicmode_1d_3dgrid_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ c532033f860b76b8c5244784da32313b gamma_light_curve.out
61d5b071cea6e1098030a8cf2fbe14e9 light_curve.out
87aa0a1a8eebc5b15f95c5c7ba6325a3 linestat.out
41a1c375110d8edbf421edca3fc426e8 modelgridrankassignments.out
dc626ea88194714abcdf146723c88d6c packets00_0000.out
39bae205a40145c915daadd3c3b5e1c8 packets00_0001.out
bc5b497552ff03cf4d025f986278da1d packets00_0002.out
11919740e525fc5ceb459416050281b2 packets00_0003.out
7c30c238fe6c85290ebe07c4fdd14afa packets00_0000.out
928f9c63f5dce2ab016f8eb5f53ad6a4 packets00_0001.out
d7e94b3bd5866621da4c7809ea02dd9e packets00_0002.out
035a4d719c778d0d7b12e1c1a0be5381 packets00_0003.out
2fa32a2e224cca813b38a1387afbe85b spec.out
bc01f046eab9bf3802149e0ff63d5069 timesteps.out
d1a1ad1c22e25f94724db515c351e488 vpackets_0000.out
Expand Down
8 changes: 4 additions & 4 deletions tests/classicmode_3d_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
Expand Up @@ -513,10 +513,10 @@ b55e935340c11d93c28cf583701f0c89 light_curve.out
c8a8b908bcdbf00c2d57592c03e23dd3 light_curve_res.out
c0138ff7e4fab0ee2bcabb2ca6c2f6b9 linestat.out
0edca801bc9867f17f0208399cf9ebd3 modelgridrankassignments.out
d4bd9d264f25c09fff92bf56870c262d packets00_0000.out
96713f8399f5fdb12b1e05b8b936d2f6 packets00_0001.out
5360849c3c59fd884cfbfb7013a4da10 packets00_0002.out
a112392101bd80542cb30df0c9650e35 packets00_0003.out
209eb2ef47ba2ac5e7613b194d14727c packets00_0000.out
0833ce88598ab839bf6fecf39c39e1bf packets00_0001.out
37f4993f675845597277236e6892276b packets00_0002.out
e4dedb262fd4d1dd233a13608fc36b45 packets00_0003.out
8c7c79fbc346b83861ae26c8386177a1 spec.out
d675f9c16c776141b7fc58067b682021 spec_res.out
c137d2b84f03c7dd06718fef347dbd15 specpol.out
Expand Down
8 changes: 4 additions & 4 deletions tests/classicmode_3d_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ e08bbb965fac36412810b8769a13ab9d grid.out
076e72bd1967d1baf52db88300446693 light_curve.out
c0138ff7e4fab0ee2bcabb2ca6c2f6b9 linestat.out
0edca801bc9867f17f0208399cf9ebd3 modelgridrankassignments.out
1e81ef6f94c8332c880d8be2f0ffba5d packets00_0000.out
1e44ed84716f7f2b2de2b445456c4a69 packets00_0001.out
f14d052cf549aec94aa7334a03b71662 packets00_0002.out
8fdf70de6cd92502cd925f66c3824a41 packets00_0003.out
b5e22d82616bb0a13d9e346356c154e3 packets00_0000.out
0a99f4670e404536a8e615be9bc2a271 packets00_0001.out
f5f1a898dde29898a08fd4bed7aa8865 packets00_0002.out
f8d231a78d88bffd1d023e6a77d60448 packets00_0003.out
79606abc60e8efc6546ef0844303e152 spec.out
bc01f046eab9bf3802149e0ff63d5069 timesteps.out
d301fc9a5830434377ebc654a613205b job0/estimators_0000.out
Expand Down
8 changes: 4 additions & 4 deletions tests/kilonova_1d_1dgrid_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ dd314f8317220adaee8b48aa1b60f2a3 gamma_light_curve.out
f0b726a4dfbbbe17d71e182cfc251e72 light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
bc40edd64676f86b6ac2df0934e2ce9a modelgridrankassignments.out
4c54bcd871084746f43ad26453c039eb packets00_0000.out
0c872ac2a44f70d6d3fc9ffaf9c64338 packets00_0001.out
b5ca49a6f951391b5083c421501f645d packets00_0002.out
377af72746a6b1d93754130a3ff6f642 packets00_0003.out
8c3d21a3d8646afef626a7adeb0feee8 packets00_0000.out
67239f5faf43336b8bd4a175553763ee packets00_0001.out
b4828c6463ba397ce993bf75488a2a33 packets00_0002.out
ddfded7dcd44bb1469432977052eca4b packets00_0003.out
5bc66d0e2f639e2cd2d2a8d9a6487c3b spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
ea174eff24f41e70b1d28e9775e7dfd3 job1/estimators_0000.out
Expand Down
8 changes: 4 additions & 4 deletions tests/kilonova_1d_1dgrid_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ a65c34c5069444d22e04c7efb8bd0d69 gamma_light_curve.out
ba3d39bcb52c8f2f4bb30666cec29607 light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
bc40edd64676f86b6ac2df0934e2ce9a modelgridrankassignments.out
c028370406b2659f1e2cc8f7b476305f packets00_0000.out
d2b546c1df9ca44beec2a25fe5cd7a12 packets00_0001.out
37dd64d999dff9f764006b75b37c2627 packets00_0002.out
209c278c8753e7d57ef1120c4b1e8c59 packets00_0003.out
f267baafef20bacbaf44ac66b4de90d5 packets00_0000.out
01c4d1d02b822f05d6a0b1a19ae0f6aa packets00_0001.out
04fca0a55fde00a2a3b31cf49d611a9b packets00_0002.out
54a3b60f3de31e59d9d046f1e133d7ef packets00_0003.out
d90011df9b26a1b201891122b690b7e9 spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
59b9ddad12a7142035a8a14a66772533 job0/estimators_0000.out
Expand Down
8 changes: 4 additions & 4 deletions tests/kilonova_1d_3dgrid_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ ea2528ae1d42dce5f7c8eef94b948c86 gamma_spec.out
c61ea3b7b9fc33359366cb32edf7ad74 light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
bc40edd64676f86b6ac2df0934e2ce9a modelgridrankassignments.out
41c15e45e9bcc526fa7b93afaa922048 packets00_0000.out
cb5dfa67343136b93267bf3555e13ecd packets00_0001.out
292f4caa6eb687c34d12fe9b01aa9aa4 packets00_0002.out
3c7ca4b9ccd45c820f424c1d4a4e597b packets00_0003.out
7e330e3a09784fdf8026ef2b81efc0d9 packets00_0000.out
59947bdab37695bb5c41b233e9644a59 packets00_0001.out
08ea133f3dd4ef8b99fd51aa7a23eb01 packets00_0002.out
7ae9a0fe5fc4b76b418fd95e41659f35 packets00_0003.out
dbb89cf92f157e3519a95ee53a28320f spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
bb94370d18931aa66b2679ca2f9d0a68 job1/estimators_0000.out
Expand Down
8 changes: 4 additions & 4 deletions tests/kilonova_1d_3dgrid_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ ac5639d46649923f4d6962a640ca309f emission.out
c4e3d0aa48ca1a45d08d6b06c4087666 light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
bc40edd64676f86b6ac2df0934e2ce9a modelgridrankassignments.out
db70f134991145ac721669fa501d8a3c packets00_0000.out
dbbcc00ad6de0a91ac579ac6380547ca packets00_0001.out
78ddc8d30e4af6a61f209a645dbe4455 packets00_0002.out
8e92340c3acf00e67508154c253256c8 packets00_0003.out
3dca38a2a4a7610f384725664209a2f6 packets00_0000.out
2c29214bc02476969918f550375e613d packets00_0001.out
08a3134596ed9a4bf7eed265acdf3d1d packets00_0002.out
6cb7f23fe871e1e174e941850084f3bb packets00_0003.out
2ebdb99d551f71d619b45c09bdd354cb spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
2889a013b8d2c36925d8e5d96f486703 job0/estimators_0000.out
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,10 @@ b1e9d6e1b0460ddb425ebe296ef0eaee light_curve.out
c4376a7fa8ea4fc8a0345dc0c3231889 light_curve_res.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
d88772c9f2f982809105433aa1ef43ed packets00_0000.out
8b2b12f83be94c74e6b452ed629a01e6 packets00_0001.out
8eda58f172cdcb88a86e018a286ee9f2 packets00_0002.out
3492c21b7da16033c832dbbb53e23c04 packets00_0003.out
1338bf7d672024f42b380d8d0f080038 packets00_0000.out
0c819dfd660bd1129ec869f14b8935dd packets00_0001.out
d197dc03276447c2ce703bbb3cd6e5ff packets00_0002.out
d1c0b59a25497a262c3668b515c42369 packets00_0003.out
2013eb78c14b8ab574b3e7d045ee9f7f spec.out
f7aae73b1abecba91128abc65b17f4be spec_res.out
a351f1711fecd60c023d0ba7332092db timesteps.out
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ afe66f023087001ce7a9fff264f87b2b gamma_light_curve.out
c167f0a32585932e22e6265b0c9ebbbb light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
c5d9f0d8d6ea6137782e7f73cceb2a99 packets00_0000.out
2f157c26d84a5002e5f88f1ffe881654 packets00_0001.out
d395efd35c062824dd6ab0104e0867f8 packets00_0002.out
e51e447e54bfe2d3f609ece1e8699cad packets00_0003.out
90053e981acde88f38e4a7614acd2cca packets00_0000.out
7f3cb2ff61dcf6693258fb12a8d4a2de packets00_0001.out
e3d4d90c60c5ffd0d7beae8dddd8cacf packets00_0002.out
04e3c8228a973338ecde2f6b90bc40bf packets00_0003.out
88a0e6320da73f235aec8739d4a123a3 spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
9978501c2017ce329a24e54daffab148 job0/estimators_0000.out
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,10 @@ ee190b2ade0bbeb40a257d10ab7f1a34 gamma_spec.out
789a5fa6f1c64c8b08062c61854f4b47 light_curve_res.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
6da8a73c53bf054878e8d385dad5b24c packets00_0000.out
45df3063a9a76a9c0f926e10d29f772e packets00_0001.out
01bf4b44c6efd342d5dc62fbecd04990 packets00_0002.out
5c9f70d461efb06a3627dca6aab5b2d9 packets00_0003.out
0d5fb0c7428d958910c037a7658af3b4 packets00_0000.out
b07e99459b2eaae02f5b45a719019248 packets00_0001.out
52c38efc594cb6fd7f96b2722df4197b packets00_0002.out
245600dfb88eeebea106755dcc4b07ad packets00_0003.out
174d35c403e43ae90380d786e591c078 spec.out
a35e02bc19e8aed065425582283e9d52 spec_res.out
a351f1711fecd60c023d0ba7332092db timesteps.out
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ f3658f06dcf3f3cb59f2af794051dd09 gamma_light_curve.out
79ada276fd59c2e1321109afd258fb59 light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
c2735ac629f244ca65ed93c9a68f804e packets00_0000.out
97ee84db14d194468fe7c8cc3748213c packets00_0001.out
e3a069b579947f54e3812795cf9deee0 packets00_0002.out
09eb173dc9f9ab59c8601d6dbdeb1af1 packets00_0003.out
5fa7e1c5ff3a497bded048dba65ea86b packets00_0000.out
83a9c67696d72ebd6eed3da323030e10 packets00_0001.out
61fa8c163469dade9ced584a19edb6ca packets00_0002.out
36075e4eb01b10e9213f54a6594b01eb packets00_0003.out
ff5a909e77a5ae78b0ff39c51813013d spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
0b45d96ce750f8d1d1f14b6fc47bebee job0/estimators_0000.out
Expand Down
8 changes: 4 additions & 4 deletions tests/kilonova_2d_2dgrid_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,10 @@ c418bd488a88758b8998799fb0e85f56 light_curve.out
dc87afe89962c6cc982654d6b51fe6d4 light_curve_res.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
d657a1b558b3d8f5ef12ffc2fe97af0c packets00_0000.out
5607b49884bd2a64e7546e79e9beb5b5 packets00_0001.out
6d750b33c47adb3ab9e147cc7f226ef5 packets00_0002.out
b80d451b7a65caf3e7e358bb2e31e215 packets00_0003.out
d874fa90ab0cd656db374027c4d84263 packets00_0000.out
c42b25777b701b4bafbbe678ab9cb553 packets00_0001.out
4189f86a3de001dc02082a24da06459f packets00_0002.out
5f80eab7dae548e5b2033d039c81806f packets00_0003.out
75a19500dc039b998f89bdaa549d4840 spec.out
fc09caca8a29c0090c5747885cb037aa spec_res.out
a351f1711fecd60c023d0ba7332092db timesteps.out
Expand Down
8 changes: 4 additions & 4 deletions tests/kilonova_2d_2dgrid_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ dcde6c7de036fea5e230d1d09e8bf708 gamma_light_curve.out
f0c53ee7bd627cdffa79a78172ae55b0 light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
69f7ff7b95a98965ba7470e7a56aa00e packets00_0000.out
6f81cdc308ab997a2aae42e9aad3b5ce packets00_0001.out
a6c0fee501b6128a3fdb60ab924aba93 packets00_0002.out
84f08d240ba21f289e94737ca195f160 packets00_0003.out
66841da450aa382ffb1bc89f4a2a5ab3 packets00_0000.out
0ed4bdd8a029f59a5274448a1afab0e5 packets00_0001.out
332651698a9ce00b998de24435e3f424 packets00_0002.out
273f83e24133d8984219f4afe187c397 packets00_0003.out
b653a3329cd63cfa1f429ff83c33693b spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
3a92706d94b2a4dfb4eb12b375c09bea job0/estimators_0000.out
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,10 @@ c7d59db7e83a3c394a2e3fc9479eba6d emissiontrue_res_97.out
45367bb87fbb87d83a989dd396432059 light_curve_res.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
5f4673ed07b99575ce686a3dd9c0d9ad packets00_0000.out
67104d4b06c8170db6a487091f826506 packets00_0001.out
f3458bdeaf2f5cb207dcbee103dda567 packets00_0002.out
945a661db635f34f23b10ed8e800586b packets00_0003.out
40f77198c2de368bdc98ef21639b1ecf packets00_0000.out
63f250cb7df583bc3ecb9393b550834b packets00_0001.out
1981cc7eb1a690d599e7927af9f34201 packets00_0002.out
2d7648f5c9a62b28ecbfd764fd148702 packets00_0003.out
bb247a6213ff848ca038d6c7368d9762 spec.out
f51cbb087c29f30368ed94046f8080e1 spec_res.out
a351f1711fecd60c023d0ba7332092db timesteps.out
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ ecb663d454dac15eb2ff74b4ca4c581d absorption.out
5e36aef9929f8ab61fa35cba5969663b light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
18756de76903d456aac7a3ae3f1068ca packets00_0000.out
6cfdd8a322075d58586bc3a8548f5040 packets00_0001.out
b3d6d74cd0c4fbe6519294af8e63ebac packets00_0002.out
933be7818c864b6314faca6a2ceafb82 packets00_0003.out
d7c33a4fc48a35472da38bd58bd7a66e packets00_0000.out
4e3fcb685c790aac6ba82d4ac4fb42e7 packets00_0001.out
58ebb999b4e2e9d4dfa0763f06ce88cf packets00_0002.out
71f446d85027c652e0a0ae80327b1e0f packets00_0003.out
bb3e8856c519696a8af781915be05c81 spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
0a029585f75d28b146493a4ad8e072c9 job0/estimators_0000.out
Expand Down
8 changes: 4 additions & 4 deletions tests/kilonova_2d_3dgrid_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,10 @@ b72b67aae10074c2b0915aaad7d9ccbc grid.out
7e4a49bf389bf336c0745b602e21468f light_curve_res.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
ca0cad54b337590f4d881ca2ec7542d2 packets00_0000.out
e58ede787afe0fb5fc82d49b071586c3 packets00_0001.out
ec98e6641906656d97ca0d82335436fb packets00_0002.out
e802497c7ed89464a51eb0884be7b959 packets00_0003.out
9ac2e742736a386964564a7a03f426db packets00_0000.out
5ff366aa042aca37c22e262e97876ef1 packets00_0001.out
6ae2565142cbf1ae6c652342468d3d67 packets00_0002.out
7d9cbc99445626402d07bd66f0556aeb packets00_0003.out
a1d482542b13466b0b7976654de18bee spec.out
9f902c07f4dd9d8ca3664cab3dea060a spec_res.out
a351f1711fecd60c023d0ba7332092db timesteps.out
Expand Down
8 changes: 4 additions & 4 deletions tests/kilonova_2d_3dgrid_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ b72b67aae10074c2b0915aaad7d9ccbc grid.out
2c912821e702307536768d4a714fd680 light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
c5fcded63551749abec1a322748e9f6d packets00_0000.out
a154f9a8511bed32dca64634d174f6f0 packets00_0001.out
7554b0d216037e2fd5bfd993681a329d packets00_0002.out
fb1b9057f1e7fc470fce0cf6011d352b packets00_0003.out
4f87a99a2945c219881086c9ef1e0304 packets00_0000.out
cf6d2847ed627f6018794964232f3e60 packets00_0001.out
2d6fe04c6e5b997d2b1ae1f28833a7fb packets00_0002.out
f8a58f999a95e3dd96ef3797c04a8f1a packets00_0003.out
efeeac5b0345ab0e40d5eab91e7c8b13 spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
62783f048fc6a50fd8eec41d80a98cca job0/estimators_0000.out
Expand Down
10 changes: 5 additions & 5 deletions tests/nebular_1d_3dgrid_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ fae457639b1c328f6d8cad9d320d8cfa absorption.out
aff44ecad68d986f04fcd6110331ba8b bflist.out
8000f1cd86ea8fc929e3956e373dc418 deposition.out
54d2f4656656ef3b6ec01e0ada76df6f emission.out
66111439a28421109a0780d80c2857c6 emissiontrue.out
9c3cff5bedc024da8e6d0eb55236348e emissiontrue.out
35a93274bf6497a395edd6ad3bf4d288 gamma_light_curve.out
91b4b9296b54b92bafa3be7c0fac6e7d gamma_spec.out
057b226c371f3819cba5e04bfea3d114 gammalinelist.out
a3e3cf9b6adeac882d182c06011c63e8 grid.out
d164a3f16763d00efb6c5fb77c7cc28d light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
25a9dd224aa09e3ac10e091ad673223d modelgridrankassignments.out
f96c3ee5226174b4b8ec96f28891fb3a packets00_0000.out
15d85a7a462122bcedd7e062cbe87a13 packets00_0001.out
c6553cfa275d7233c01483bb0d76fd6f packets00_0002.out
fe3bd5e02b6bd99c9952bd6844ee6511 packets00_0003.out
401401c222866521c21bbc4fc434cd07 packets00_0000.out
e4d1c9201d97eedae8cc1873e663f2e1 packets00_0001.out
8fd002442cc49845bd39644195a02d9f packets00_0002.out
cb58820a9bd90883f848b84a1f271c6c packets00_0003.out
016f17fa70a9c4f51370e93ae1726178 spec.out
8e7163982f1aa938dc1505478b8c60d1 timesteps.out
da485f04616e55614c596aa7da71a56e job1/estimators_0000.out
Expand Down
10 changes: 5 additions & 5 deletions tests/nebular_1d_3dgrid_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
aff44ecad68d986f04fcd6110331ba8b bflist.out
ca7aba5bcf922df1a215f9a430c62d6e deposition.out
b572b3b0eb158c2f5708aea54bf5a8d2 emission.out
d94f3c8e88cf2c3e8d9402b8eda53d57 emissiontrue.out
38378dd5d9ea9bc666aad4f8760021bb emissiontrue.out
bb161073d8675c66989191fa8904955c gamma_light_curve.out
057b226c371f3819cba5e04bfea3d114 gammalinelist.out
a3e3cf9b6adeac882d182c06011c63e8 grid.out
f532725fe559290335a353905f17a1f1 light_curve.out
3d4b61fa5c0c8987526ebd71787cb8ea linestat.out
25a9dd224aa09e3ac10e091ad673223d modelgridrankassignments.out
51e228322c99a96c271ad2ab0f51d5e3 packets00_0000.out
51b23be79eb9ecd9bdede2cdfdeb7b6d packets00_0001.out
dc7f0380146827e0c0349758328182b2 packets00_0002.out
da9f5a7e9ea5a5994035f8cfb9312f89 packets00_0003.out
aa62adbfd7880c712dd9665a24ff3bdb packets00_0000.out
874c58560800a3f2270dbe2361e92f2c packets00_0001.out
e04f37851cbde644a4589dc73ffe36e2 packets00_0002.out
ce6db00706ebfd0ffd47a42b06dd63f9 packets00_0003.out
5b1fcce42483fdd04a03b0d378cf92ca spec.out
8e7163982f1aa938dc1505478b8c60d1 timesteps.out
34ddd0a2d79e19640f06fabbfebdb8fe job0/estimators_0000.out
Expand Down
Loading

0 comments on commit 8cd920b

Please sign in to comment.