mirror of
https://github.com/NVIDIA/nvbench.git
synced 2026-03-14 20:27:24 +00:00
19 lines
370 B
Bash
Executable File
19 lines
370 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$(dirname "$0")/build_common.sh"
|
|
|
|
# Run NVBench tests with high parallelism. If any need to be
|
|
# serialized, define the `RUN_SERIAL` CMake property on the
|
|
# test.
|
|
export CTEST_PARALLEL_LEVEL=${PARALLEL_LEVEL}
|
|
|
|
print_environment_details
|
|
|
|
./build_nvbench.sh "$@"
|
|
|
|
PRESET="nvbench-cpp$CXX_STANDARD"
|
|
|
|
test_preset "NVBench" ${PRESET}
|
|
|
|
print_time_summary
|