mirror of https://github.com/abinit/abinit.git
22 lines
503 B
Python
Executable File
22 lines
503 B
Python
Executable File
"""Global variables associated to the test suite."""
|
|
|
|
#: List of CPP variables that should be defined in config.h in order to enable this suite.
|
|
need_cpp_vars = [
|
|
"HAVE_GPU_CUDA",
|
|
"HAVE_KOKKOS",
|
|
"HAVE_YAKL",
|
|
]
|
|
|
|
#: List of keywords that are automatically added to all the tests of this suite.
|
|
keywords = [
|
|
]
|
|
|
|
#: This suite contains tests executed with different numbers of MPI processes.
|
|
is_multi_parallel = True
|
|
|
|
#: List of input files
|
|
inp_files = [
|
|
"t01.abi",
|
|
"t02.abi", # Au31, chebfi, paral_kgb=1
|
|
]
|