1
0
Fork 0
mirror of https://github.com/cosmo-sims/MUSIC.git synced 2024-09-19 17:03:46 +02:00

this one fixes a "bug" for nyx and regridding...we also go for multithreaded...

This commit is contained in:
JFEngels 2013-02-13 14:59:47 +01:00
parent 6ad387c0ce
commit ae521fc683
2 changed files with 3 additions and 4 deletions

View file

@ -1,9 +1,8 @@
##############################################################################
### compile time configuration options
FFTW3 = yes
MULTITHREADFFTW = no
MULTITHREADFFTW = yes
MULTITHREADFFTW = no
MULTITHREADFFTW = no
SINGLEPRECISION = no
HAVEHDF5 = no
HAVEBOXLIB = yes
@ -19,7 +18,7 @@ CPATHS = -I. -I$(HOME)/local/include -I/opt/local/include -I/usr/local/include
LPATHS = -L$(HOME)/local/lib -L/opt/local/lib -L/usr/local/lib
CPATHS = -I. -I$(HOME)/music-stuff/inst/include
LPATHS = -L$(HOME)/music-stuff/inst/lib
LPATHS = -L$(HOME)/music-stuff/inst/lib -L$(HOME)/fftw-3.3.3/lib
##############################################################################
# if you have FFTW 2.1.5 or 3.x with multi-thread support, you can enable the

View file

@ -388,7 +388,7 @@ public:
inputs << "mg.v = 0 # verbosity in Amr.cpp" << std::endl;
inputs << "particles.v = 1 # verbosity in Particle class" << std::endl;
inputs << "amr.ref_ratio = 2 2 2 2 2 2 2 2 " << std::endl;
inputs << "amr.regrid_int = 1 1 1 1 1 1 1 1 " << std::endl;
inputs << "amr.regrid_int = 2 2 2 2 2 2 2 2 " << std::endl;
inputs << "amr.initial_grid_file = init/grids_file" << std::endl;
inputs << "amr.useFixedCoarseGrids = 1" << std::endl;
inputs << "amr.useFixedUpToLevel = " << levelmax_-levelmin_ << std::endl;