├── .gitignore ├── README.SPLASH2 ├── README.md ├── SPLASH2.POSTING ├── codes ├── Makefile.config ├── apps │ ├── barnes │ │ ├── Makefile │ │ ├── README.barnes │ │ ├── code.C │ │ ├── code.H │ │ ├── code_io.C │ │ ├── code_io.H │ │ ├── defs.H │ │ ├── getparam.C │ │ ├── getparam.H │ │ ├── grav.C │ │ ├── grav.H │ │ ├── input │ │ ├── load.C │ │ ├── load.H │ │ ├── stdinc.H │ │ ├── util.C │ │ ├── util.H │ │ └── vectmath.H │ ├── fmm │ │ ├── Makefile │ │ ├── README.fmm │ │ ├── box.C │ │ ├── box.H │ │ ├── construct_grid.C │ │ ├── construct_grid.H │ │ ├── cost_zones.C │ │ ├── cost_zones.H │ │ ├── defs.C │ │ ├── defs.H │ │ ├── fmm.C │ │ ├── inputs │ │ │ ├── input.16384 │ │ │ ├── input.2048 │ │ │ └── input.256 │ │ ├── interactions.C │ │ ├── interactions.H │ │ ├── memory.C │ │ ├── memory.H │ │ ├── particle.C │ │ ├── particle.H │ │ ├── partition_grid.C │ │ └── partition_grid.H │ ├── ocean │ │ ├── README.ocean │ │ ├── contiguous_partitions │ │ │ ├── Makefile │ │ │ ├── decs.H │ │ │ ├── jacobcalc.C │ │ │ ├── jacobcalc2.C │ │ │ ├── laplacalc.C │ │ │ ├── linkup.C │ │ │ ├── main.C │ │ │ ├── multi.C │ │ │ ├── slave1.C │ │ │ ├── slave2.C │ │ │ └── subblock.C │ │ └── non_contiguous_partitions │ │ │ ├── Makefile │ │ │ ├── decs.H │ │ │ ├── jacobcalc.C │ │ │ ├── laplacalc.C │ │ │ ├── main.C │ │ │ ├── multi.C │ │ │ ├── slave1.C │ │ │ └── slave2.C │ ├── radiosity │ │ ├── Makefile │ │ ├── README.radiosity │ │ ├── display.C │ │ ├── elemman.C │ │ ├── glibdumb │ │ │ ├── Makefile │ │ │ ├── glib.c │ │ │ └── glib.h │ │ ├── glibps │ │ │ ├── Makefile │ │ │ ├── glibps.c │ │ │ └── pslib.h │ │ ├── model.H │ │ ├── modelman.C │ │ ├── parallel.H │ │ ├── patch.H │ │ ├── patchman.C │ │ ├── rad_main.C │ │ ├── rad_tools.C │ │ ├── radiosity.H │ │ ├── room_model.C │ │ ├── smallobj.C │ │ ├── structs.H │ │ ├── task.H │ │ ├── taskman.C │ │ └── visible.C │ ├── raytrace │ │ ├── Makefile │ │ ├── README.raytrace │ │ ├── bbox.C │ │ ├── cr.C │ │ ├── env.C │ │ ├── fbuf.C │ │ ├── geo.C │ │ ├── huprn.C │ │ ├── husetup.C │ │ ├── hutv.C │ │ ├── inputs │ │ │ ├── balls4.env.Z │ │ │ ├── balls4.geo.Z │ │ │ ├── car.env.Z │ │ │ ├── car.geo.Z │ │ │ ├── teapot.env.Z │ │ │ └── teapot.geo.Z │ │ ├── isect.C │ │ ├── main.C │ │ ├── matrix.C │ │ ├── memory.C │ │ ├── poly.C │ │ ├── raystack.C │ │ ├── rltotiff │ │ │ ├── Makefile │ │ │ ├── rltotiff.c │ │ │ ├── tiff_rgba_io.c │ │ │ └── tiff_rgba_io.h │ │ ├── rt.H │ │ ├── shade.C │ │ ├── sph.C │ │ ├── trace.C │ │ ├── tri.C │ │ └── workpool.C │ ├── volrend │ │ ├── Makefile │ │ ├── README.volrend │ │ ├── adaptive.C │ │ ├── address.H │ │ ├── anl.H │ │ ├── const.H │ │ ├── file.C │ │ ├── global.H │ │ ├── incl.H │ │ ├── inputs │ │ │ ├── head-scaleddown2.den.Z │ │ │ ├── head-scaleddown4.den.Z │ │ │ └── head.den.Z │ │ ├── libtiff.tar.Z │ │ ├── macros.H │ │ ├── main.C │ │ ├── map.C │ │ ├── my_types.H │ │ ├── normal.C │ │ ├── octree.C │ │ ├── opacity.C │ │ ├── option.C │ │ ├── raytrace.C │ │ ├── render.C │ │ ├── user_options.H │ │ └── view.C │ ├── water-nsquared │ │ ├── Makefile │ │ ├── README.water-nsquared │ │ ├── bndry.C │ │ ├── cnst.H │ │ ├── cnstnt.C │ │ ├── cshift.C │ │ ├── fileio.H │ │ ├── frcnst.H │ │ ├── global.H │ │ ├── initia.C │ │ ├── input │ │ ├── interf.C │ │ ├── intraf.C │ │ ├── kineti.C │ │ ├── mddata.H │ │ ├── mdmain.C │ │ ├── mdvar.H │ │ ├── parameters.H │ │ ├── poteng.C │ │ ├── predcor.C │ │ ├── randno.H │ │ ├── random.in │ │ ├── split.H │ │ ├── syscons.C │ │ ├── water.C │ │ ├── water.H │ │ └── wwpot.H │ └── water-spatial │ │ ├── Makefile │ │ ├── README.water-spatial │ │ ├── bndry.C │ │ ├── cnst.H │ │ ├── cnstnt.C │ │ ├── cshift.C │ │ ├── fileio.H │ │ ├── frcnst.H │ │ ├── global.H │ │ ├── initia.C │ │ ├── input │ │ ├── interf.C │ │ ├── intraf.C │ │ ├── kineti.C │ │ ├── mddata.H │ │ ├── mdmain.C │ │ ├── mdvar.H │ │ ├── parameters.H │ │ ├── poteng.C │ │ ├── predcor.C │ │ ├── randno.H │ │ ├── random.in │ │ ├── split.H │ │ ├── syscons.C │ │ ├── water.C │ │ ├── water.H │ │ └── wwpot.H ├── kernels │ ├── cholesky │ │ ├── Makefile │ │ ├── README.cholesky │ │ ├── amal.C │ │ ├── assign.C │ │ ├── bfac.C │ │ ├── bksolve.C │ │ ├── block2.C │ │ ├── fo.C │ │ ├── inputs │ │ │ ├── d750.O.Z │ │ │ ├── lshp.O.Z │ │ │ ├── tk14.O.Z │ │ │ ├── tk15.O.Z │ │ │ ├── tk16.O.Z │ │ │ ├── tk17.O.Z │ │ │ ├── tk18.O.Z │ │ │ ├── tk23.O.Z │ │ │ ├── tk25.O.Z │ │ │ └── wr10.O.Z │ │ ├── malloc.C │ │ ├── matrix.H │ │ ├── mf.C │ │ ├── numLL.C │ │ ├── parts.C │ │ ├── seg.C │ │ ├── solve.C │ │ ├── tree.C │ │ └── util.C │ ├── fft │ │ ├── Makefile │ │ ├── README.fft │ │ └── fft.C │ ├── lu │ │ ├── README.lu │ │ ├── contiguous_blocks │ │ │ ├── Makefile │ │ │ └── lu.C │ │ └── non_contiguous_blocks │ │ │ ├── Makefile │ │ │ └── lu.C │ └── radix │ │ ├── Makefile │ │ ├── README.radix │ │ └── radix.C ├── null_macros │ ├── c.m4.null │ ├── c.m4.null.POSIX │ └── c.m4.null.POSIX_BARRIER └── shmem_files │ └── sgi │ └── shmem.c └── splash2_isca95.ps.Z /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /README.SPLASH2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/README.SPLASH2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/README.md -------------------------------------------------------------------------------- /SPLASH2.POSTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/SPLASH2.POSTING -------------------------------------------------------------------------------- /codes/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/Makefile.config -------------------------------------------------------------------------------- /codes/apps/barnes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/Makefile -------------------------------------------------------------------------------- /codes/apps/barnes/README.barnes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/README.barnes -------------------------------------------------------------------------------- /codes/apps/barnes/code.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/code.C -------------------------------------------------------------------------------- /codes/apps/barnes/code.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/code.H -------------------------------------------------------------------------------- /codes/apps/barnes/code_io.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/code_io.C -------------------------------------------------------------------------------- /codes/apps/barnes/code_io.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/code_io.H -------------------------------------------------------------------------------- /codes/apps/barnes/defs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/defs.H -------------------------------------------------------------------------------- /codes/apps/barnes/getparam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/getparam.C -------------------------------------------------------------------------------- /codes/apps/barnes/getparam.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/getparam.H -------------------------------------------------------------------------------- /codes/apps/barnes/grav.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/grav.C -------------------------------------------------------------------------------- /codes/apps/barnes/grav.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/grav.H -------------------------------------------------------------------------------- /codes/apps/barnes/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/input -------------------------------------------------------------------------------- /codes/apps/barnes/load.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/load.C -------------------------------------------------------------------------------- /codes/apps/barnes/load.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/load.H -------------------------------------------------------------------------------- /codes/apps/barnes/stdinc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/stdinc.H -------------------------------------------------------------------------------- /codes/apps/barnes/util.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/util.C -------------------------------------------------------------------------------- /codes/apps/barnes/util.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/util.H -------------------------------------------------------------------------------- /codes/apps/barnes/vectmath.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/barnes/vectmath.H -------------------------------------------------------------------------------- /codes/apps/fmm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/Makefile -------------------------------------------------------------------------------- /codes/apps/fmm/README.fmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/README.fmm -------------------------------------------------------------------------------- /codes/apps/fmm/box.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/box.C -------------------------------------------------------------------------------- /codes/apps/fmm/box.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/box.H -------------------------------------------------------------------------------- /codes/apps/fmm/construct_grid.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/construct_grid.C -------------------------------------------------------------------------------- /codes/apps/fmm/construct_grid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/construct_grid.H -------------------------------------------------------------------------------- /codes/apps/fmm/cost_zones.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/cost_zones.C -------------------------------------------------------------------------------- /codes/apps/fmm/cost_zones.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/cost_zones.H -------------------------------------------------------------------------------- /codes/apps/fmm/defs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/defs.C -------------------------------------------------------------------------------- /codes/apps/fmm/defs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/defs.H -------------------------------------------------------------------------------- /codes/apps/fmm/fmm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/fmm.C -------------------------------------------------------------------------------- /codes/apps/fmm/inputs/input.16384: -------------------------------------------------------------------------------- 1 | two cluster 2 | plummer 3 | 16384 4 | 1e-6 5 | 1 6 | 5 7 | .025 8 | 0.0 9 | cost zones 10 | -------------------------------------------------------------------------------- /codes/apps/fmm/inputs/input.2048: -------------------------------------------------------------------------------- 1 | two cluster 2 | plummer 3 | 2048 4 | 1e-6 5 | 1 6 | 5 7 | .025 8 | 0.0 9 | cost zones 10 | -------------------------------------------------------------------------------- /codes/apps/fmm/inputs/input.256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/inputs/input.256 -------------------------------------------------------------------------------- /codes/apps/fmm/interactions.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/interactions.C -------------------------------------------------------------------------------- /codes/apps/fmm/interactions.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/interactions.H -------------------------------------------------------------------------------- /codes/apps/fmm/memory.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/memory.C -------------------------------------------------------------------------------- /codes/apps/fmm/memory.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/memory.H -------------------------------------------------------------------------------- /codes/apps/fmm/particle.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/particle.C -------------------------------------------------------------------------------- /codes/apps/fmm/particle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/particle.H -------------------------------------------------------------------------------- /codes/apps/fmm/partition_grid.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/partition_grid.C -------------------------------------------------------------------------------- /codes/apps/fmm/partition_grid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/fmm/partition_grid.H -------------------------------------------------------------------------------- /codes/apps/ocean/README.ocean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/README.ocean -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/Makefile -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/decs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/decs.H -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/jacobcalc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/jacobcalc.C -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/jacobcalc2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/jacobcalc2.C -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/laplacalc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/laplacalc.C -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/linkup.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/linkup.C -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/main.C -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/multi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/multi.C -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/slave1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/slave1.C -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/slave2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/slave2.C -------------------------------------------------------------------------------- /codes/apps/ocean/contiguous_partitions/subblock.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/contiguous_partitions/subblock.C -------------------------------------------------------------------------------- /codes/apps/ocean/non_contiguous_partitions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/non_contiguous_partitions/Makefile -------------------------------------------------------------------------------- /codes/apps/ocean/non_contiguous_partitions/decs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/non_contiguous_partitions/decs.H -------------------------------------------------------------------------------- /codes/apps/ocean/non_contiguous_partitions/jacobcalc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/non_contiguous_partitions/jacobcalc.C -------------------------------------------------------------------------------- /codes/apps/ocean/non_contiguous_partitions/laplacalc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/non_contiguous_partitions/laplacalc.C -------------------------------------------------------------------------------- /codes/apps/ocean/non_contiguous_partitions/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/non_contiguous_partitions/main.C -------------------------------------------------------------------------------- /codes/apps/ocean/non_contiguous_partitions/multi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/non_contiguous_partitions/multi.C -------------------------------------------------------------------------------- /codes/apps/ocean/non_contiguous_partitions/slave1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/non_contiguous_partitions/slave1.C -------------------------------------------------------------------------------- /codes/apps/ocean/non_contiguous_partitions/slave2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/ocean/non_contiguous_partitions/slave2.C -------------------------------------------------------------------------------- /codes/apps/radiosity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/Makefile -------------------------------------------------------------------------------- /codes/apps/radiosity/README.radiosity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/README.radiosity -------------------------------------------------------------------------------- /codes/apps/radiosity/display.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/display.C -------------------------------------------------------------------------------- /codes/apps/radiosity/elemman.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/elemman.C -------------------------------------------------------------------------------- /codes/apps/radiosity/glibdumb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/glibdumb/Makefile -------------------------------------------------------------------------------- /codes/apps/radiosity/glibdumb/glib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/glibdumb/glib.c -------------------------------------------------------------------------------- /codes/apps/radiosity/glibdumb/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/glibdumb/glib.h -------------------------------------------------------------------------------- /codes/apps/radiosity/glibps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/glibps/Makefile -------------------------------------------------------------------------------- /codes/apps/radiosity/glibps/glibps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/glibps/glibps.c -------------------------------------------------------------------------------- /codes/apps/radiosity/glibps/pslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/glibps/pslib.h -------------------------------------------------------------------------------- /codes/apps/radiosity/model.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/model.H -------------------------------------------------------------------------------- /codes/apps/radiosity/modelman.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/modelman.C -------------------------------------------------------------------------------- /codes/apps/radiosity/parallel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/parallel.H -------------------------------------------------------------------------------- /codes/apps/radiosity/patch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/patch.H -------------------------------------------------------------------------------- /codes/apps/radiosity/patchman.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/patchman.C -------------------------------------------------------------------------------- /codes/apps/radiosity/rad_main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/rad_main.C -------------------------------------------------------------------------------- /codes/apps/radiosity/rad_tools.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/rad_tools.C -------------------------------------------------------------------------------- /codes/apps/radiosity/radiosity.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/radiosity.H -------------------------------------------------------------------------------- /codes/apps/radiosity/room_model.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/room_model.C -------------------------------------------------------------------------------- /codes/apps/radiosity/smallobj.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/smallobj.C -------------------------------------------------------------------------------- /codes/apps/radiosity/structs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/structs.H -------------------------------------------------------------------------------- /codes/apps/radiosity/task.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/task.H -------------------------------------------------------------------------------- /codes/apps/radiosity/taskman.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/taskman.C -------------------------------------------------------------------------------- /codes/apps/radiosity/visible.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/radiosity/visible.C -------------------------------------------------------------------------------- /codes/apps/raytrace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/Makefile -------------------------------------------------------------------------------- /codes/apps/raytrace/README.raytrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/README.raytrace -------------------------------------------------------------------------------- /codes/apps/raytrace/bbox.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/bbox.C -------------------------------------------------------------------------------- /codes/apps/raytrace/cr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/cr.C -------------------------------------------------------------------------------- /codes/apps/raytrace/env.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/env.C -------------------------------------------------------------------------------- /codes/apps/raytrace/fbuf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/fbuf.C -------------------------------------------------------------------------------- /codes/apps/raytrace/geo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/geo.C -------------------------------------------------------------------------------- /codes/apps/raytrace/huprn.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/huprn.C -------------------------------------------------------------------------------- /codes/apps/raytrace/husetup.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/husetup.C -------------------------------------------------------------------------------- /codes/apps/raytrace/hutv.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/hutv.C -------------------------------------------------------------------------------- /codes/apps/raytrace/inputs/balls4.env.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/inputs/balls4.env.Z -------------------------------------------------------------------------------- /codes/apps/raytrace/inputs/balls4.geo.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/inputs/balls4.geo.Z -------------------------------------------------------------------------------- /codes/apps/raytrace/inputs/car.env.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/inputs/car.env.Z -------------------------------------------------------------------------------- /codes/apps/raytrace/inputs/car.geo.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/inputs/car.geo.Z -------------------------------------------------------------------------------- /codes/apps/raytrace/inputs/teapot.env.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/inputs/teapot.env.Z -------------------------------------------------------------------------------- /codes/apps/raytrace/inputs/teapot.geo.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/inputs/teapot.geo.Z -------------------------------------------------------------------------------- /codes/apps/raytrace/isect.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/isect.C -------------------------------------------------------------------------------- /codes/apps/raytrace/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/main.C -------------------------------------------------------------------------------- /codes/apps/raytrace/matrix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/matrix.C -------------------------------------------------------------------------------- /codes/apps/raytrace/memory.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/memory.C -------------------------------------------------------------------------------- /codes/apps/raytrace/poly.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/poly.C -------------------------------------------------------------------------------- /codes/apps/raytrace/raystack.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/raystack.C -------------------------------------------------------------------------------- /codes/apps/raytrace/rltotiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/rltotiff/Makefile -------------------------------------------------------------------------------- /codes/apps/raytrace/rltotiff/rltotiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/rltotiff/rltotiff.c -------------------------------------------------------------------------------- /codes/apps/raytrace/rltotiff/tiff_rgba_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/rltotiff/tiff_rgba_io.c -------------------------------------------------------------------------------- /codes/apps/raytrace/rltotiff/tiff_rgba_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/rltotiff/tiff_rgba_io.h -------------------------------------------------------------------------------- /codes/apps/raytrace/rt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/rt.H -------------------------------------------------------------------------------- /codes/apps/raytrace/shade.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/shade.C -------------------------------------------------------------------------------- /codes/apps/raytrace/sph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/sph.C -------------------------------------------------------------------------------- /codes/apps/raytrace/trace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/trace.C -------------------------------------------------------------------------------- /codes/apps/raytrace/tri.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/tri.C -------------------------------------------------------------------------------- /codes/apps/raytrace/workpool.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/raytrace/workpool.C -------------------------------------------------------------------------------- /codes/apps/volrend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/Makefile -------------------------------------------------------------------------------- /codes/apps/volrend/README.volrend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/README.volrend -------------------------------------------------------------------------------- /codes/apps/volrend/adaptive.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/adaptive.C -------------------------------------------------------------------------------- /codes/apps/volrend/address.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/address.H -------------------------------------------------------------------------------- /codes/apps/volrend/anl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/anl.H -------------------------------------------------------------------------------- /codes/apps/volrend/const.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/const.H -------------------------------------------------------------------------------- /codes/apps/volrend/file.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/file.C -------------------------------------------------------------------------------- /codes/apps/volrend/global.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/global.H -------------------------------------------------------------------------------- /codes/apps/volrend/incl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/incl.H -------------------------------------------------------------------------------- /codes/apps/volrend/inputs/head-scaleddown2.den.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/inputs/head-scaleddown2.den.Z -------------------------------------------------------------------------------- /codes/apps/volrend/inputs/head-scaleddown4.den.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/inputs/head-scaleddown4.den.Z -------------------------------------------------------------------------------- /codes/apps/volrend/inputs/head.den.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/inputs/head.den.Z -------------------------------------------------------------------------------- /codes/apps/volrend/libtiff.tar.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/libtiff.tar.Z -------------------------------------------------------------------------------- /codes/apps/volrend/macros.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/macros.H -------------------------------------------------------------------------------- /codes/apps/volrend/main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/main.C -------------------------------------------------------------------------------- /codes/apps/volrend/map.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/map.C -------------------------------------------------------------------------------- /codes/apps/volrend/my_types.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/my_types.H -------------------------------------------------------------------------------- /codes/apps/volrend/normal.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/normal.C -------------------------------------------------------------------------------- /codes/apps/volrend/octree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/octree.C -------------------------------------------------------------------------------- /codes/apps/volrend/opacity.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/opacity.C -------------------------------------------------------------------------------- /codes/apps/volrend/option.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/option.C -------------------------------------------------------------------------------- /codes/apps/volrend/raytrace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/raytrace.C -------------------------------------------------------------------------------- /codes/apps/volrend/render.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/render.C -------------------------------------------------------------------------------- /codes/apps/volrend/user_options.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/user_options.H -------------------------------------------------------------------------------- /codes/apps/volrend/view.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/volrend/view.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/Makefile -------------------------------------------------------------------------------- /codes/apps/water-nsquared/README.water-nsquared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/README.water-nsquared -------------------------------------------------------------------------------- /codes/apps/water-nsquared/bndry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/bndry.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/cnst.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/cnst.H -------------------------------------------------------------------------------- /codes/apps/water-nsquared/cnstnt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/cnstnt.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/cshift.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/cshift.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/fileio.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/fileio.H -------------------------------------------------------------------------------- /codes/apps/water-nsquared/frcnst.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/frcnst.H -------------------------------------------------------------------------------- /codes/apps/water-nsquared/global.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/global.H -------------------------------------------------------------------------------- /codes/apps/water-nsquared/initia.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/initia.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/input -------------------------------------------------------------------------------- /codes/apps/water-nsquared/interf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/interf.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/intraf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/intraf.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/kineti.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/kineti.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/mddata.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/mddata.H -------------------------------------------------------------------------------- /codes/apps/water-nsquared/mdmain.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/mdmain.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/mdvar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/mdvar.H -------------------------------------------------------------------------------- /codes/apps/water-nsquared/parameters.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/parameters.H -------------------------------------------------------------------------------- /codes/apps/water-nsquared/poteng.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/poteng.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/predcor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/predcor.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/randno.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/randno.H -------------------------------------------------------------------------------- /codes/apps/water-nsquared/random.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/random.in -------------------------------------------------------------------------------- /codes/apps/water-nsquared/split.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/split.H -------------------------------------------------------------------------------- /codes/apps/water-nsquared/syscons.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/syscons.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/water.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/water.C -------------------------------------------------------------------------------- /codes/apps/water-nsquared/water.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/water.H -------------------------------------------------------------------------------- /codes/apps/water-nsquared/wwpot.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-nsquared/wwpot.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/Makefile -------------------------------------------------------------------------------- /codes/apps/water-spatial/README.water-spatial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/README.water-spatial -------------------------------------------------------------------------------- /codes/apps/water-spatial/bndry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/bndry.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/cnst.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/cnst.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/cnstnt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/cnstnt.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/cshift.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/cshift.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/fileio.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/fileio.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/frcnst.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/frcnst.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/global.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/global.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/initia.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/initia.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/input -------------------------------------------------------------------------------- /codes/apps/water-spatial/interf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/interf.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/intraf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/intraf.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/kineti.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/kineti.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/mddata.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/mddata.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/mdmain.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/mdmain.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/mdvar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/mdvar.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/parameters.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/parameters.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/poteng.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/poteng.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/predcor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/predcor.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/randno.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/randno.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/random.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/random.in -------------------------------------------------------------------------------- /codes/apps/water-spatial/split.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/split.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/syscons.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/syscons.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/water.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/water.C -------------------------------------------------------------------------------- /codes/apps/water-spatial/water.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/water.H -------------------------------------------------------------------------------- /codes/apps/water-spatial/wwpot.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/apps/water-spatial/wwpot.H -------------------------------------------------------------------------------- /codes/kernels/cholesky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/Makefile -------------------------------------------------------------------------------- /codes/kernels/cholesky/README.cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/README.cholesky -------------------------------------------------------------------------------- /codes/kernels/cholesky/amal.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/amal.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/assign.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/assign.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/bfac.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/bfac.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/bksolve.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/bksolve.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/block2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/block2.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/fo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/fo.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/inputs/d750.O.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/inputs/d750.O.Z -------------------------------------------------------------------------------- /codes/kernels/cholesky/inputs/lshp.O.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/inputs/lshp.O.Z -------------------------------------------------------------------------------- /codes/kernels/cholesky/inputs/tk14.O.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/inputs/tk14.O.Z -------------------------------------------------------------------------------- /codes/kernels/cholesky/inputs/tk15.O.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/inputs/tk15.O.Z -------------------------------------------------------------------------------- /codes/kernels/cholesky/inputs/tk16.O.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/inputs/tk16.O.Z -------------------------------------------------------------------------------- /codes/kernels/cholesky/inputs/tk17.O.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/inputs/tk17.O.Z -------------------------------------------------------------------------------- /codes/kernels/cholesky/inputs/tk18.O.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/inputs/tk18.O.Z -------------------------------------------------------------------------------- /codes/kernels/cholesky/inputs/tk23.O.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/inputs/tk23.O.Z -------------------------------------------------------------------------------- /codes/kernels/cholesky/inputs/tk25.O.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/inputs/tk25.O.Z -------------------------------------------------------------------------------- /codes/kernels/cholesky/inputs/wr10.O.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/inputs/wr10.O.Z -------------------------------------------------------------------------------- /codes/kernels/cholesky/malloc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/malloc.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/matrix.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/matrix.H -------------------------------------------------------------------------------- /codes/kernels/cholesky/mf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/mf.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/numLL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/numLL.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/parts.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/parts.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/seg.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/seg.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/solve.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/solve.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/tree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/tree.C -------------------------------------------------------------------------------- /codes/kernels/cholesky/util.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/cholesky/util.C -------------------------------------------------------------------------------- /codes/kernels/fft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/fft/Makefile -------------------------------------------------------------------------------- /codes/kernels/fft/README.fft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/fft/README.fft -------------------------------------------------------------------------------- /codes/kernels/fft/fft.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/fft/fft.C -------------------------------------------------------------------------------- /codes/kernels/lu/README.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/lu/README.lu -------------------------------------------------------------------------------- /codes/kernels/lu/contiguous_blocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/lu/contiguous_blocks/Makefile -------------------------------------------------------------------------------- /codes/kernels/lu/contiguous_blocks/lu.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/lu/contiguous_blocks/lu.C -------------------------------------------------------------------------------- /codes/kernels/lu/non_contiguous_blocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/lu/non_contiguous_blocks/Makefile -------------------------------------------------------------------------------- /codes/kernels/lu/non_contiguous_blocks/lu.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/lu/non_contiguous_blocks/lu.C -------------------------------------------------------------------------------- /codes/kernels/radix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/radix/Makefile -------------------------------------------------------------------------------- /codes/kernels/radix/README.radix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/radix/README.radix -------------------------------------------------------------------------------- /codes/kernels/radix/radix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/kernels/radix/radix.C -------------------------------------------------------------------------------- /codes/null_macros/c.m4.null: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/null_macros/c.m4.null -------------------------------------------------------------------------------- /codes/null_macros/c.m4.null.POSIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/null_macros/c.m4.null.POSIX -------------------------------------------------------------------------------- /codes/null_macros/c.m4.null.POSIX_BARRIER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/null_macros/c.m4.null.POSIX_BARRIER -------------------------------------------------------------------------------- /codes/shmem_files/sgi/shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/codes/shmem_files/sgi/shmem.c -------------------------------------------------------------------------------- /splash2_isca95.ps.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyix/splash2_benchmark/HEAD/splash2_isca95.ps.Z --------------------------------------------------------------------------------