MUDA
Loading...
Searching...
No Matches
cuda_arch.h
1#pragma once
2#include <cuda.h>
3namespace muda
4{
6{
7#ifdef __CUDA_ARCH__
8 constexpr static bool value = true;
9#else
10 constexpr static bool value = false;
11#endif
12};
13
14constexpr bool is_cuda_arch_v = is_cuda_arch::value;
15} // namespace muda
Definition cuda_arch.h:6