Skip to content

Commit 1b12cec

Browse files
committed
Added APM implementation from my hg repo + Greg’s fork. Results from the paper are reproduced. Additional:
* changes to make APM tests completely isolated * tests added to the test suite * updated documentation + authors list * updated .gitignore * show log in case of error in circleci
1 parent 089cdf7 commit 1b12cec

177 files changed

Lines changed: 15913 additions & 3886 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ commands:
119119
make precision-$prec
120120
make particles-$part
121121
make clean
122-
make -j 4 || (make show-config ; exit 1)
122+
make -j 4 || (cat out.compile ; make show-config ; exit 1)
123123
done ; done
124124
# return this to default
125125
make precision-64
@@ -135,19 +135,19 @@ commands:
135135
make integers-$inte
136136
make particle-id-$pids
137137
make clean
138-
make -j 4 || (make show-config ; exit 1)
138+
make -j 4 || (cat out.compile ; make show-config ; exit 1)
139139
done ; done
140140
make integers-64
141141
make particle-id-64
142142
# test without mpi
143143
make use-mpi-no
144144
make clean
145-
make -j 4 || (make show-config ; exit 1)
145+
make -j 4 || (cat out.compile ; make show-config ; exit 1)
146146
make use-mpi-yes
147147
# test ray-tracing
148148
make photon-no
149149
make clean
150-
make -j 4 || (make show-config ; exit 1)
150+
make -j 4 || (cat out.compile ; make show-config ; exit 1)
151151
152152
build-docs:
153153
description: "Test the docs build."

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,18 @@ src/P-GroupFinder/P-GroupFinder
5454
doc/manual/build
5555

5656
run/results.js
57+
58+
amr.out
59+
performance.out
60+
OutputLog
61+
Evtime
62+
Enzo_Build
63+
OutputLevelInformation.out
64+
RunFinished
65+
DD0000/
66+
DD0001/
67+
AccelerationField.out*
68+
TestGravityCheckResults.out*
69+
01.out
70+
nosetests.xml
71+
run/**/*.png

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ support for Enzo
5252

5353
Many people have contributed to the development of Enzo -- here's just a short
5454
list of the people who have recently contributed, in alphabetical order:
55-
55+
5656
* Tom Abel tabel@stanford.edu
5757
* Gabriel Altay gabriel.altay@gmail.com
5858
* James Bordner jobordner@ucsd.edu
@@ -68,7 +68,7 @@ list of the people who have recently contributed, in alphabetical order:
6868
* Andrew Emerick aemerick11@gmail.com
6969
* Forrest Glines forrestglines@gmail.com
7070
* Nathan Goldbaum ngoldbau@ucsc.edu
71-
* Philipp Grete grete@pa.msu.edu
71+
* Philipp Grete grete@pa.msu.edu
7272
* John Forbes jcforbes@ucsc.edu
7373
* Yusuke Fujimoto yusuke.fujimoto.jp@gmail.com
7474
* Oliver Hahn hahn@phys.ethz.ch
@@ -94,6 +94,7 @@ list of the people who have recently contributed, in alphabetical order:
9494
* Boon Kiat Oh bkoh@roe.ac.uk
9595
* Brian O'Shea oshea@msu.edu
9696
* Pascal Paschos ppaschos@minbari.ucsd.edu
97+
* Jean-Claude Passy jcpassy@gmail.com
9798
* Molly Peeples molly@stsci.edu
9899
* Carolyn Peruta perutaca@msu.edu
99100
* John Regan johnanthonyregan@gmail.com
@@ -102,7 +103,7 @@ list of the people who have recently contributed, in alphabetical order:
102103
* Munier Salem msalem@astro.columbia.edu
103104
* Devin Silvia devin.silvia@gmail.com
104105
* Christine Simpson csimpson@astro.columbia.edu
105-
* Samuel Skillman samskillman@gmail.com
106+
* Samuel Skillman samskillman@gmail.com
106107
* Stephen Skory s@skory.us
107108
* Britton Smith brittonsmith@gmail.com
108109
* Geoffrey So gsiisg@gmail.com
@@ -114,5 +115,5 @@ list of the people who have recently contributed, in alphabetical order:
114115
* Peng Wang penwang@nvidia.com
115116
* John Wise jwise@physics.gatech.edu
116117
* Hao Xu haoxu.physics@gmail.com
117-
* Alvaro Zamora alvarozamora@stanford.edu
118+
* Alvaro Zamora alvarozamora@stanford.edu
118119
* Fen Zhao fenzhao@stanford.edu

0 commit comments

Comments
 (0)