Skip to content

Commit

Permalink
Standardize on USE_MPI = TRUE in all makefiles (#2641)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpkatz authored Oct 19, 2023
1 parent 2acd2e0 commit ec8279a
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Exec/gravity_tests/evrard_collapse/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ DIM = 3

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE

USE_GRAV = TRUE
Expand Down
2 changes: 1 addition & 1 deletion Exec/gravity_tests/uniform_cube/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ DIM ?= 3

COMP ?= gcc

USE_MPI ?= FALSE
USE_MPI ?= TRUE
USE_OMP ?= FALSE

USE_GRAV ?= TRUE
Expand Down
2 changes: 1 addition & 1 deletion Exec/gravity_tests/uniform_sphere/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ DIM ?= 3

COMP ?= gcc

USE_MPI ?= FALSE
USE_MPI ?= TRUE
USE_OMP ?= FALSE

USE_GRAV ?= TRUE
Expand Down
2 changes: 1 addition & 1 deletion Exec/hydro_tests/KH/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ DIM ?= 2

COMP ?= gnu

USE_MPI ?= FALSE
USE_MPI ?= TRUE
USE_OMP ?= FALSE


Expand Down
2 changes: 1 addition & 1 deletion Exec/hydro_tests/RT/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DIM = 2

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE

USE_GRAV = TRUE
USE_PARTICLES = FALSE
Expand Down
2 changes: 1 addition & 1 deletion Exec/hydro_tests/Sod/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ DIM = 1

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE


Expand Down
2 changes: 1 addition & 1 deletion Exec/hydro_tests/Sod_stellar/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ DIM = 2

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE

USE_MHD = FALSE
Expand Down
2 changes: 1 addition & 1 deletion Exec/hydro_tests/Vortices_LWAcoustics/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ DIM = 2

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE


Expand Down
2 changes: 1 addition & 1 deletion Exec/hydro_tests/oddeven/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DIM = 2

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE

USE_SHOCK_VAR = TRUE
Expand Down
2 changes: 1 addition & 1 deletion Exec/hydro_tests/riemann_2d/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DIM = 2

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE

# define CASTRO top directory
Expand Down
2 changes: 1 addition & 1 deletion Exec/mhd_tests/Alfven/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DIM = 3

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE

USE_MHD = TRUE
Expand Down
2 changes: 1 addition & 1 deletion Exec/mhd_tests/MagnetosonicWaves/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DIM = 3

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE

USE_MHD = TRUE
Expand Down
2 changes: 1 addition & 1 deletion Exec/mhd_tests/species/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DIM = 3

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE

USE_MHD = TRUE
Expand Down
2 changes: 1 addition & 1 deletion Exec/science/Detonation/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DIM = 1

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE

USE_REACT = TRUE

Expand Down
2 changes: 1 addition & 1 deletion Exec/science/subchandra/analysis/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DEBUG = FALSE
DIM = 2
COMP = gnu
PRECISION = DOUBLE
USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE
USE_CUDA = FALSE

Expand Down
2 changes: 1 addition & 1 deletion Exec/unit_tests/diffusion_test/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DIM = 2

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE

USE_DIFFUSION = TRUE
Expand Down
2 changes: 1 addition & 1 deletion Exec/unit_tests/model_burner/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DIM = 3

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE
USE_ACC = FALSE

Expand Down
2 changes: 1 addition & 1 deletion Exec/unit_tests/particles_test/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DIM = 2

COMP = gnu

USE_MPI = FALSE
USE_MPI = TRUE
USE_OMP = FALSE

USE_PARTICLES = TRUE
Expand Down

0 comments on commit ec8279a

Please sign in to comment.