vecmem
1.14.0
Loading...
Searching...
No Matches
cuda
src
utils
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
32
namespace
vecmem
{
33
namespace
cuda {
34
namespace
details {
35
37
void
throw_error(
cudaError_t
errorCode
,
const
char
*
expression
,
38
const
char
*
file
,
int
line
);
39
40
}
// namespace details
41
}
// namespace cuda
42
}
// namespace vecmem
vecmem
Main namespace for the vecmem classes/functions.
Definition
atomic_ref.hpp:16
vecmem::vector
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition
vector.hpp:35
Generated by
1.9.8