Particle_Simulator/Cpp_Stuff/include/util.hpp

18 lines
533 B
C++
Raw Normal View History

2024-11-23 21:59:28 -05:00
#include <cuda_runtime.h>
#include <cublas_v2.h>
#include <iostream>
#define CHECK_CUDA_ERROR(val) check((val), #val, __FILE__, __LINE__)
template <typename T>
void check(T err, const char* const func, const char* const file,
const int line)
{
if (int(err) != int(cudaSuccess))
{
std::cerr << "CUDA Runtime Error at: " << file << ":" << line << ":" << err
<< std::endl;
// We don't exit when we encounter CUDA errors in this example.
// std::exit(EXIT_FAILURE);
}
}