Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standardize on USE_MPI = TRUE in all makefiles #2641

Merged
merged 5 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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