mirror of
https://github.com/NVIDIA/nvbench.git
synced 2026-03-14 20:27:24 +00:00
Locking clocks is currently only implemented for Volta+ devices. Example usage: my_bench -d [0,1,3] --persistence-mode 1 --lock-gpu-clocks base See the cli_help.md docs for more info.
8 lines
203 B
CMake
8 lines
203 B
CMake
function(nvbench_write_config_header filepath)
|
|
if (NVBench_ENABLE_NVML)
|
|
set(NVBENCH_HAS_NVML 1)
|
|
endif()
|
|
|
|
configure_file("${NVBench_SOURCE_DIR}/cmake/config.cuh.in" "${filepath}")
|
|
endfunction()
|