morton-arithmetic 0.1.0
Fast Morton (Z-order) codes with O(1) arithmetic
Loading...
Searching...
No Matches
hd.hpp
Go to the documentation of this file.
1
17
18#ifndef MORTON_HD_HPP
19#define MORTON_HD_HPP
20
21#if !defined(MORTON_HD)
22#if defined(MORTON_ENABLE_KOKKOS) && defined(KOKKOS_VERSION)
23#define MORTON_HD KOKKOS_FUNCTION
24#elif defined(__CUDACC__) || defined(__HIPCC__)
25#define MORTON_HD __host__ __device__
26#else
27#define MORTON_HD
28#endif
29#endif // !defined(MORTON_HD)
30
31#endif // MORTON_HD_HPP