-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update for current Parthenon, make script updates.
- Loading branch information
Showing
4 changed files
with
62 additions
and
33 deletions.
There are no files selected for viewing
Submodule parthenon
updated
6 files
+2 −0 | CHANGELOG.md | |
+1 −1 | src/basic_types.hpp | |
+6 −0 | src/driver/driver.cpp | |
+2 −3 | src/interface/packages.hpp | |
+13 −6 | src/solvers/bicgstab_solver.hpp | |
+5 −7 | src/tasks/task_list.hpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Machine files | ||
|
||
## Writing a machine file | ||
|
||
`make.sh` sources a series of machine-specific | ||
definitions from the machines/ directory. | ||
|
||
If the host isn't listed, the CPU & GPU arch will be guessed | ||
|
||
Example Kokkos_ARCH options: | ||
CPUs: BDW, SKX, KNL, AMDAVX, ZEN2, ZEN3, POWER9 | ||
ARM: ARMV80, ARMV81, ARMV8_THUNDERX2, A64FX | ||
HOST_ARCH= | ||
|
||
GPUs: VOLTA70, TURING75, AMPERE80, HOPPER90, VEGA90A, INTEL_GEN | ||
DEVICE_ARCH= | ||
|
||
Compilers to use. | ||
C_NATIVE= | ||
CXX_NATIVE= | ||
|
||
Less common options: | ||
PREFIX_PATH= | ||
|
||
EXTRA_FLAGS | ||
|
||
CXXFLAGS | ||
CFLAGS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters