Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revise C++ coding style using clang-format-6.0 | Kitware Robot | 2018-06-01 | 1 | -4/+4 |
| | | | | | | | | | | | | Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`. Use `clang-format` version 6.0. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit. | ||||
* | Tests: Run clang-format on CUDA code | Brad King | 2017-02-14 | 1 | -18/+12 |
| | |||||
* | Tests/Cuda: Use memory allocated on the GPU in the kernels | Pierre Moreau | 2017-02-10 | 1 | -5/+23 |
| | |||||
* | Tests/Cuda: Print asynchronous error messages, if any | Pierre Moreau | 2017-02-10 | 1 | -0/+7 |
| | | | | | | | | | | As kernel launches are asynchronous, a `cudaGetLastError()` right after the kernel launch might be executed while the kernel is still running. Synchronizing the device will ensure that all the work is completed before progressing further on, and allows to catch errors that were previously missed. The `cudaGetLastError()` after the `cudaDeviceSynchronize()` is there to reset the error variable to `cudaSuccess`. | ||||
* | Tests/Cuda: Print error message if mixed_kernel failed | Pierre Moreau | 2017-02-10 | 1 | -0/+7 |
| | |||||
* | CUDA: Port test cases to Windows with MSVC host compiler | Brad King | 2017-01-12 | 1 | -2/+10 |
| | |||||
* | CUDA: Tests now state why they are failing when no CUDA card is found. | Robert Maynard | 2016-12-15 | 1 | -2/+4 |
| | |||||
* | CUDA: Add tests to verify CUDA compiler works properly. | Robert Maynard | 2016-11-14 | 1 | -0/+25 |