summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/Complex/dynamic.cu
Commit message (Collapse)AuthorAgeFilesLines
* Revise include order using clang-format-6.0Kitware Robot2019-10-011-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.
* Revise C++ coding style using clang-format-6.0Kitware Robot2018-06-011-2/+2
| | | | | | | | | | | | 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.
* CUDA: Visual Studio now properly delays device linkingRobert Maynard2017-04-261-1/+1
|
* Tests: Run clang-format on CUDA codeBrad King2017-02-141-30/+19
|
* Tests/Cuda: Select a CUDA device supporting compute 3.0Pierre Moreau2017-02-101-0/+40
|
* Tests/Cuda: Print asynchronous error messages, if anyPierre Moreau2017-02-101-0/+6
| | | | | | | | | | 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: Add identifiers to error messagesPierre Moreau2017-02-101-1/+2
|
* Tests/Cuda: Print error message if an error occurredPierre Moreau2017-02-101-1/+1
| | | | Fixes c59811a2 "CUDA: Tests now state why they are failing when no CUDA card is found."
* CUDA: Port test cases to Windows with MSVC host compilerBrad King2017-01-121-2/+8
|
* CUDA: Tests now state why they are failing when no CUDA card is found.Robert Maynard2016-12-151-7/+5
|
* CUDA: Add tests to verify CUDA compiler works properly.Robert Maynard2016-11-141-0/+29