cuSBF
Loading...
Searching...
No Matches
cuda_error.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <cusbf/error.hpp>
4
5#include <stdexcept>
6
11#define CUSBF_CUDA_CALL(err) \
12 do { \
13 if (cudaError_t _cusbf_err = (err); _cusbf_err != cudaSuccess) { \
14 throw std::runtime_error(::cusbf::Error::cuda(_cusbf_err).message()); \
15 } \
16 } while (0)