Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tests: Restore NVCC-specific CUDA tests | Brad King | 2020-05-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | In commit a653ca9504 (Tests: Update CUDA tests to work with Clang, 2020-03-27) some tests were conditioned using `CMAKE_CUDA_COMPILER_ID`. That is not defined when configuring CMake itself, so it accidentally turned off NVCC-specific CUDA tests altogether. Convert the conditions to check `CMake_TEST_CUDA` for `Clang` instead. That option is added explicitly to builds where we want the tests to run, so we can set it to a value indicating the CUDA compiler vendor. In commit a653ca9504 (Tests: Update CUDA tests to work with Clang, 2020-03-27) the NVCC-specific `CudaOnly.GPUDebugFlag` test was accidentally broken by removing a space when appending `-G` to the CUDA flags. This was covered by the test not running. Restore the space. Fixes: #20727 | ||||
* | Tests: Update CUDA tests to work with Clang | Raul Tambre | 2020-05-15 | 1 | -7/+8 |
| | |||||
* | Revise include order using clang-format-6.0 | Kitware Robot | 2019-10-01 | 1 | -1/+2 |
| | | | | | Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0. | ||||
* | Tests: Fix Cuda test project names | Brad King | 2018-10-10 | 1 | -1/+1 |
| | | | | | Make them match what `ADD_TEST_MACRO` gives to ctest as the project name to build so that the `.sln` file will be found. | ||||
* | Tests: Add missing error check in CudaOnly.GPUDebugFlag | Brad King | 2018-02-01 | 1 | -0/+5 |
| | | | | If `cudaMallocManaged` fails then later use of `has_debug` is not valid. | ||||
* | CUDA: Allow -G to control device debuging on MSVC. | Robert Maynard | 2018-01-11 | 2 | -0/+89 |
Fixes #17551 |