vecmem 1.14.0
Loading...
Searching...
No Matches
cuda_error_handling.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// CUDA include(s).
10#include <cuda_runtime_api.h>
11
12// Detray Data Model include(s).
13#include "vecmem/utils/types.hpp"
14
16#define VECMEM_CUDA_ERROR_CHECK(EXP) \
17 do { \
18 cudaError_t errorCode = EXP; \
19 if (errorCode != cudaSuccess) { \
20 vecmem::cuda::details::throw_error(errorCode, #EXP, __FILE__, \
21 __LINE__); \
22 } \
23 } while (false)
24
27#define VECMEM_CUDA_ERROR_IGNORE(EXP) \
28 do { \
29 (void)EXP; \
30 } while (false)
31
32namespace vecmem {
33namespace cuda {
34namespace details {
35
37void throw_error(cudaError_t errorCode, const char* expression,
38 const char* file, int line);
39
40} // namespace details
41} // namespace cuda
42} // namespace vecmem
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35