mirror of
https://github.com/NVIDIA/nvbench.git
synced 2026-03-14 20:27:24 +00:00
commitc5b2fc0a8bAuthor: Allison Piper <alliepiper16@gmail.com> Date: Sat Apr 6 21:48:20 2024 +0000 Add supported compilers and tools in README.md. commit92fe366da5Author: Allison Piper <alliepiper16@gmail.com> Date: Sat Apr 6 20:45:30 2024 +0000 Fix issues discovered by header tests. commitf7f6c92143Author: Allison Piper <alliepiper16@gmail.com> Date: Sat Apr 6 20:45:06 2024 +0000 Setup header tests, add C++20 header tests + examples. The core library will always be built with C++17, but we test our headers / examples under 17 and 20. commit4b24f26b66Author: Allison Piper <alliepiper16@gmail.com> Date: Sat Apr 6 16:21:42 2024 +0000 Pass CUDA FLAGS to install tests. commit4fb672ae91Author: Allison Piper <alliepiper16@gmail.com> Date: Sat Apr 6 15:43:41 2024 +0000 Add newer GCC (13) and Clang (17, 18).
75 lines
1.6 KiB
JSON
75 lines
1.6 KiB
JSON
{
|
|
"version": 3,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 23,
|
|
"patch": 1
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "base",
|
|
"hidden": true,
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/$env{CCCL_BUILD_INFIX}/${presetName}",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Release",
|
|
"CMAKE_CUDA_ARCHITECTURES": "all-major",
|
|
"NVBench_ENABLE_CUPTI": true,
|
|
"NVBench_ENABLE_DEVICE_TESTING": false,
|
|
"NVBench_ENABLE_EXAMPLES": true,
|
|
"NVBench_ENABLE_HEADER_TESTING": true,
|
|
"NVBench_ENABLE_INSTALL_RULES": true,
|
|
"NVBench_ENABLE_NVML": true,
|
|
"NVBench_ENABLE_TESTING": true,
|
|
"NVBench_ENABLE_WERROR": true
|
|
}
|
|
},
|
|
{
|
|
"name": "nvbench-dev",
|
|
"displayName": "Developer Build",
|
|
"inherits": "base",
|
|
"cacheVariables": {
|
|
"NVBench_ENABLE_DEVICE_TESTING": true
|
|
}
|
|
},
|
|
{
|
|
"name": "nvbench-ci",
|
|
"displayName": "NVBench CI",
|
|
"inherits": "base"
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "nvbench-dev",
|
|
"configurePreset": "nvbench-dev"
|
|
},
|
|
{
|
|
"name": "nvbench-ci",
|
|
"configurePreset": "nvbench-ci"
|
|
}
|
|
],
|
|
"testPresets": [
|
|
{
|
|
"name": "base",
|
|
"hidden": true,
|
|
"output": {
|
|
"outputOnFailure": true
|
|
},
|
|
"execution": {
|
|
"noTestsAction": "error",
|
|
"stopOnFailure": false
|
|
}
|
|
},
|
|
{
|
|
"name": "nvbench-dev",
|
|
"configurePreset": "nvbench-dev",
|
|
"inherits": "base"
|
|
},
|
|
{
|
|
"name": "nvbench-ci",
|
|
"configurePreset": "nvbench-ci",
|
|
"inherits": "base"
|
|
}
|
|
]
|
|
}
|