diff --git a/Docs/source/manual/Tutorials_BFSFlame.rst b/Docs/source/manual/Tutorials_BFSFlame.rst index 00ac8c51..ff32a335 100644 --- a/Docs/source/manual/Tutorials_BFSFlame.rst +++ b/Docs/source/manual/Tutorials_BFSFlame.rst @@ -237,6 +237,7 @@ The next few lines specify AMReX compilation options and compiler selection: :: USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE + USE_SYCL = FALSE It allows users to specify the number of spatial dimensions (2D), activate the compilation of the EB aware AMReX source code, trigger debug compilation and other AMReX options. The compiler (``gnu``) and the parallelism paradigm diff --git a/Docs/source/manual/Tutorials_FlameSheet.rst b/Docs/source/manual/Tutorials_FlameSheet.rst index e1cd8433..5420c35a 100644 --- a/Docs/source/manual/Tutorials_FlameSheet.rst +++ b/Docs/source/manual/Tutorials_FlameSheet.rst @@ -258,6 +258,7 @@ The next few lines specify AMReX compilation options and compiler selection: :: USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE + USE_SYCL = FALSE It allows users to specify the number of spatial dimensions (2D), trigger debug compilation and other AMReX options. The compiler (``gnu``) and the parallelism paradigm (in the present case only MPI is used) are then selected. Note that on OSX platform, one should update the compiler to ``llvm``. diff --git a/Docs/source/manual/Tutorials_FlowPastCyl.rst b/Docs/source/manual/Tutorials_FlowPastCyl.rst index 2d32bd8f..05d86c21 100644 --- a/Docs/source/manual/Tutorials_FlowPastCyl.rst +++ b/Docs/source/manual/Tutorials_FlowPastCyl.rst @@ -193,6 +193,7 @@ Next comes the build configuration block: :: USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE + USE_SYCL = FALSE # MISC options DEBUG = FALSE diff --git a/Docs/source/manual/Tutorials_TripleFlame.rst b/Docs/source/manual/Tutorials_TripleFlame.rst index c911ba01..65a0aa28 100644 --- a/Docs/source/manual/Tutorials_TripleFlame.rst +++ b/Docs/source/manual/Tutorials_TripleFlame.rst @@ -242,6 +242,7 @@ The next few lines specify AMReX compilation options and compiler selection: :: USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE + USE_SYCL = FALSE In `PeleLMeX`, the chemistry model (set of species, their thermodynamic and transport properties as well as the description of their of chemical interactions) is specified at compile time. Chemistry models available diff --git a/Exec/Cases/ChallengeProblem/GNUmakefile b/Exec/Cases/ChallengeProblem/GNUmakefile index 4f387180..2b3309eb 100644 --- a/Exec/Cases/ChallengeProblem/GNUmakefile +++ b/Exec/Cases/ChallengeProblem/GNUmakefile @@ -11,8 +11,8 @@ DEBUG = FALSE PRECISION = DOUBLE VERBOSE = FALSE TINY_PROFILE = FALSE -USE_EB = TRUE -USE_HYPRE = FALSE +USE_EB = TRUE +USE_HYPRE = FALSE # Compilation COMP = clang @@ -20,6 +20,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = TRUE +USE_SYCL = FALSE # PeleLMeX CEXE_headers += EBUserDefined.H diff --git a/Exec/Cases/CounterFlow/GNUmakefile b/Exec/Cases/CounterFlow/GNUmakefile index 8ef71e5c..f76d6241 100644 --- a/Exec/Cases/CounterFlow/GNUmakefile +++ b/Exec/Cases/CounterFlow/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/Cases/CounterFlowSpray/GNUmakefile b/Exec/Cases/CounterFlowSpray/GNUmakefile index 40c7964a..f5a0ef81 100644 --- a/Exec/Cases/CounterFlowSpray/GNUmakefile +++ b/Exec/Cases/CounterFlowSpray/GNUmakefile @@ -18,6 +18,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/Cases/DiffBunsen2D/GNUmakefile b/Exec/Cases/DiffBunsen2D/GNUmakefile index df018e99..994571b9 100644 --- a/Exec/Cases/DiffBunsen2D/GNUmakefile +++ b/Exec/Cases/DiffBunsen2D/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/Cases/JetInCrossflow/GNUmakefile b/Exec/Cases/JetInCrossflow/GNUmakefile index f64fa005..03c44b4a 100644 --- a/Exec/Cases/JetInCrossflow/GNUmakefile +++ b/Exec/Cases/JetInCrossflow/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/Cases/NormalJet_OpenDomain/GNUmakefile b/Exec/Cases/NormalJet_OpenDomain/GNUmakefile index 4ea4e2e0..26355083 100644 --- a/Exec/Cases/NormalJet_OpenDomain/GNUmakefile +++ b/Exec/Cases/NormalJet_OpenDomain/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/Cases/PremBunsen2D/GNUmakefile b/Exec/Cases/PremBunsen2D/GNUmakefile index 4410a985..e4b72f07 100644 --- a/Exec/Cases/PremBunsen2D/GNUmakefile +++ b/Exec/Cases/PremBunsen2D/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/Cases/PremBunsen3D/GNUmakefile b/Exec/Cases/PremBunsen3D/GNUmakefile index 41b6e9f7..950a30cc 100644 --- a/Exec/Cases/PremBunsen3D/GNUmakefile +++ b/Exec/Cases/PremBunsen3D/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/Cases/SwirlFlowWallInteractions/GNUmakefile b/Exec/Cases/SwirlFlowWallInteractions/GNUmakefile index 861bbc0d..8193d98e 100644 --- a/Exec/Cases/SwirlFlowWallInteractions/GNUmakefile +++ b/Exec/Cases/SwirlFlowWallInteractions/GNUmakefile @@ -18,6 +18,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/Cases/TripleFlame/GNUmakefile b/Exec/Cases/TripleFlame/GNUmakefile index b32299a5..52594a6f 100644 --- a/Exec/Cases/TripleFlame/GNUmakefile +++ b/Exec/Cases/TripleFlame/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/Efield/FlameSheetIons/GNUmakefile b/Exec/Efield/FlameSheetIons/GNUmakefile index 6d3fbc1f..9b5e9837 100644 --- a/Exec/Efield/FlameSheetIons/GNUmakefile +++ b/Exec/Efield/FlameSheetIons/GNUmakefile @@ -18,6 +18,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = TRUE diff --git a/Exec/Efield/IonizedAirWave/GNUmakefile b/Exec/Efield/IonizedAirWave/GNUmakefile index 4b37ecc8..b889b1d1 100644 --- a/Exec/Efield/IonizedAirWave/GNUmakefile +++ b/Exec/Efield/IonizedAirWave/GNUmakefile @@ -18,6 +18,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = TRUE diff --git a/Exec/Efield/PremBunsen3DKuhl/GNUmakefile b/Exec/Efield/PremBunsen3DKuhl/GNUmakefile index 9b0b50bf..d4404265 100644 --- a/Exec/Efield/PremBunsen3DKuhl/GNUmakefile +++ b/Exec/Efield/PremBunsen3DKuhl/GNUmakefile @@ -18,6 +18,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = TRUE diff --git a/Exec/RegTests/EB_BackwardStepFlame/GNUmakefile b/Exec/RegTests/EB_BackwardStepFlame/GNUmakefile index 6905b8df..f9d27c32 100644 --- a/Exec/RegTests/EB_BackwardStepFlame/GNUmakefile +++ b/Exec/RegTests/EB_BackwardStepFlame/GNUmakefile @@ -10,8 +10,8 @@ DEBUG = FALSE PRECISION = DOUBLE VERBOSE = FALSE TINY_PROFILE = FALSE -USE_EB = TRUE -USE_HYPRE = FALSE +USE_EB = TRUE +USE_HYPRE = FALSE # Compilation COMP = gnu @@ -19,6 +19,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX CEXE_headers += EBUserDefined.H diff --git a/Exec/RegTests/EB_EnclosedFlame/GNUmakefile b/Exec/RegTests/EB_EnclosedFlame/GNUmakefile index 62a710be..181c22bf 100644 --- a/Exec/RegTests/EB_EnclosedFlame/GNUmakefile +++ b/Exec/RegTests/EB_EnclosedFlame/GNUmakefile @@ -10,8 +10,8 @@ DEBUG = FALSE PRECISION = DOUBLE VERBOSE = FALSE TINY_PROFILE = FALSE -USE_EB = TRUE -USE_HYPRE = FALSE +USE_EB = TRUE +USE_HYPRE = FALSE # Compilation COMP = gnu @@ -19,6 +19,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/RegTests/EB_EnclosedVortex/GNUmakefile b/Exec/RegTests/EB_EnclosedVortex/GNUmakefile index 85a6860a..5d6332ad 100644 --- a/Exec/RegTests/EB_EnclosedVortex/GNUmakefile +++ b/Exec/RegTests/EB_EnclosedVortex/GNUmakefile @@ -11,8 +11,8 @@ DEBUG = FALSE PRECISION = DOUBLE VERBOSE = FALSE TINY_PROFILE = FALSE -USE_EB = TRUE -USE_HYPRE = FALSE +USE_EB = TRUE +USE_HYPRE = FALSE # Compilation COMP = gnu @@ -20,6 +20,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/RegTests/EB_FlowPastCylinder/GNUmakefile b/Exec/RegTests/EB_FlowPastCylinder/GNUmakefile index 35470937..22f36449 100644 --- a/Exec/RegTests/EB_FlowPastCylinder/GNUmakefile +++ b/Exec/RegTests/EB_FlowPastCylinder/GNUmakefile @@ -10,8 +10,8 @@ DEBUG = FALSE PRECISION = DOUBLE VERBOSE = FALSE TINY_PROFILE = FALSE -USE_EB = TRUE -USE_HYPRE = FALSE +USE_EB = TRUE +USE_HYPRE = FALSE # Compilation COMP = gnu @@ -19,6 +19,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX CEXE_headers += EBUserDefined.H diff --git a/Exec/RegTests/EB_PipeFlow/GNUmakefile b/Exec/RegTests/EB_PipeFlow/GNUmakefile index eda615e7..6f7ede0b 100644 --- a/Exec/RegTests/EB_PipeFlow/GNUmakefile +++ b/Exec/RegTests/EB_PipeFlow/GNUmakefile @@ -10,8 +10,8 @@ DEBUG = FALSE PRECISION = DOUBLE VERBOSE = FALSE TINY_PROFILE = FALSE -USE_EB = TRUE -USE_HYPRE = FALSE +USE_EB = TRUE +USE_HYPRE = FALSE # Compilation COMP = gnu @@ -19,6 +19,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX CEXE_headers += EBUserDefined.H diff --git a/Exec/RegTests/EnclosedFlame/GNUmakefile b/Exec/RegTests/EnclosedFlame/GNUmakefile index 314caab8..fb92638c 100644 --- a/Exec/RegTests/EnclosedFlame/GNUmakefile +++ b/Exec/RegTests/EnclosedFlame/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/RegTests/EnclosedInjection/GNUmakefile b/Exec/RegTests/EnclosedInjection/GNUmakefile index 79d14685..d11c1d47 100644 --- a/Exec/RegTests/EnclosedInjection/GNUmakefile +++ b/Exec/RegTests/EnclosedInjection/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/RegTests/FlameSheet/GNUmakefile b/Exec/RegTests/FlameSheet/GNUmakefile index ed649f1d..a8c2eebd 100644 --- a/Exec/RegTests/FlameSheet/GNUmakefile +++ b/Exec/RegTests/FlameSheet/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/RegTests/HITDecay/GNUmakefile b/Exec/RegTests/HITDecay/GNUmakefile index 92c77d5c..f009bcd1 100644 --- a/Exec/RegTests/HITDecay/GNUmakefile +++ b/Exec/RegTests/HITDecay/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/RegTests/HotBubble/GNUmakefile b/Exec/RegTests/HotBubble/GNUmakefile index 6dc3e053..f57c6023 100644 --- a/Exec/RegTests/HotBubble/GNUmakefile +++ b/Exec/RegTests/HotBubble/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/RegTests/PeriodicCases/GNUmakefile b/Exec/RegTests/PeriodicCases/GNUmakefile index 5bbc2b25..e654758f 100644 --- a/Exec/RegTests/PeriodicCases/GNUmakefile +++ b/Exec/RegTests/PeriodicCases/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/RegTests/SprayTest/GNUmakefile b/Exec/RegTests/SprayTest/GNUmakefile index 52545263..4fc7a3e3 100644 --- a/Exec/RegTests/SprayTest/GNUmakefile +++ b/Exec/RegTests/SprayTest/GNUmakefile @@ -18,6 +18,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/RegTests/TaylorGreen/GNUmakefile b/Exec/RegTests/TaylorGreen/GNUmakefile index 2392f96e..7c3dada4 100644 --- a/Exec/RegTests/TaylorGreen/GNUmakefile +++ b/Exec/RegTests/TaylorGreen/GNUmakefile @@ -12,11 +12,12 @@ VERBOSE = FALSE TINY_PROFILE = FALSE # Compilation -COMP = llvm +COMP = gnu USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/RegTests/TripleFlame/GNUmakefile b/Exec/RegTests/TripleFlame/GNUmakefile index c086955b..6d1556d1 100644 --- a/Exec/RegTests/TripleFlame/GNUmakefile +++ b/Exec/RegTests/TripleFlame/GNUmakefile @@ -12,11 +12,12 @@ VERBOSE = FALSE TINY_PROFILE = FALSE # Compilation -COMP = llvm +COMP = gnu USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/RegTests/TurbInflow/GNUmakefile b/Exec/RegTests/TurbInflow/GNUmakefile index 92c77d5c..f009bcd1 100644 --- a/Exec/RegTests/TurbInflow/GNUmakefile +++ b/Exec/RegTests/TurbInflow/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/RegTests/Unit/GNUmakefile b/Exec/RegTests/Unit/GNUmakefile index 4dc613e0..4c7c0624 100644 --- a/Exec/RegTests/Unit/GNUmakefile +++ b/Exec/RegTests/Unit/GNUmakefile @@ -17,6 +17,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX diff --git a/Exec/UnitTests/DodecaneLu/GNUmakefile b/Exec/UnitTests/DodecaneLu/GNUmakefile index 5be23006..a2848491 100644 --- a/Exec/UnitTests/DodecaneLu/GNUmakefile +++ b/Exec/UnitTests/DodecaneLu/GNUmakefile @@ -18,6 +18,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX USE_EFIELD = FALSE diff --git a/Exec/UnitTests/EB_SphericalFlame/GNUmakefile b/Exec/UnitTests/EB_SphericalFlame/GNUmakefile index 0d814b41..fca2a951 100644 --- a/Exec/UnitTests/EB_SphericalFlame/GNUmakefile +++ b/Exec/UnitTests/EB_SphericalFlame/GNUmakefile @@ -20,6 +20,7 @@ USE_MPI = TRUE USE_OMP = FALSE USE_CUDA = FALSE USE_HIP = FALSE +USE_SYCL = FALSE # PeleLMeX