Go to the documentation of this file.
9 #define nrn_pragma_stringify(x) #x
10 #if defined(CORENEURON_ENABLE_GPU) && defined(CORENEURON_PREFER_OPENMP_OFFLOAD) && defined(_OPENMP)
11 #define nrn_pragma_acc(x)
12 #define nrn_pragma_omp(x) _Pragma(nrn_pragma_stringify(omp x))
14 #elif defined(CORENEURON_ENABLE_GPU) && !defined(CORENEURON_PREFER_OPENMP_OFFLOAD) && \
16 #define nrn_pragma_acc(x) _Pragma(nrn_pragma_stringify(acc x))
17 #define nrn_pragma_omp(x)
20 #define nrn_pragma_acc(x)
21 #define nrn_pragma_omp(x)
26 #include <string_view>
32 std::type_info
const& typeid_T,
39 std::type_info
const& typeid_T,
44 std::type_info
const& typeid_T,
49 std::type_info
const& typeid_T,
55 std::type_info
const& typeid_T,
59 #if defined(CORENEURON_ENABLE_GPU) && !defined(CORENEURON_UNIFIED_MEMORY) && \
60 defined(__NVCOMPILER_MAJOR__) && defined(__NVCOMPILER_MINOR__) && \
61 (__NVCOMPILER_MAJOR__ <= 22) && (__NVCOMPILER_MINOR__ <= 3)
64 #define CORENEURON_ENABLE_PRESENT_TABLE
65 std::pair<void*, bool> cnrn_target_deviceptr_impl(
bool must_be_present_or_null,
void const* h_ptr);
66 void cnrn_target_copyin_update_present_table(
void const* h_ptr,
void* d_ptr, std::size_t len);
67 void cnrn_target_delete_update_present_table(
void const* h_ptr, std::size_t len);
73 bool must_be_present_or_null,
77 #ifdef CORENEURON_ENABLE_PRESENT_TABLE
78 auto const d_ptr_and_error = cnrn_target_deviceptr_impl(must_be_present_or_null, h_ptr);
79 d_ptr =
static_cast<T*
>(d_ptr_and_error.first);
80 error = d_ptr_and_error.second;
81 #elif defined(CORENEURON_ENABLE_GPU) && !defined(CORENEURON_PREFER_OPENMP_OFFLOAD) && \
83 d_ptr =
static_cast<T*
>(acc_deviceptr(
const_cast<T*
>(h_ptr)));
84 #elif defined(CORENEURON_ENABLE_GPU) && defined(CORENEURON_PREFER_OPENMP_OFFLOAD) && \
86 if (must_be_present_or_null || omp_target_is_present(h_ptr, omp_get_default_device())) {
88 { d_ptr =
const_cast<T*
>(h_ptr); }
91 if (must_be_present_or_null && h_ptr) {
92 throw std::runtime_error(
93 "cnrn_target_deviceptr() not implemented without OpenACC/OpenMP and gpu build");
96 if (must_be_present_or_null) {
102 throw std::runtime_error(
103 "cnrn_target_deviceptr() encountered an error, you may want to try setting "
104 "CORENEURON_GPU_DEBUG=1");
109 template <
typename T>
112 #if defined(CORENEURON_ENABLE_GPU) && !defined(CORENEURON_PREFER_OPENMP_OFFLOAD) && \
114 d_ptr =
static_cast<T*
>(acc_copyin(
const_cast<T*
>(h_ptr), len *
sizeof(T)));
115 #elif defined(CORENEURON_ENABLE_GPU) && defined(CORENEURON_PREFER_OPENMP_OFFLOAD) && \
119 { d_ptr =
const_cast<T*
>(h_ptr); }
121 throw std::runtime_error(
122 "cnrn_target_copyin() not implemented without OpenACC/OpenMP and gpu build");
124 #ifdef CORENEURON_ENABLE_PRESENT_TABLE
125 cnrn_target_copyin_update_present_table(h_ptr, d_ptr, len *
sizeof(T));
131 template <
typename T>
134 #ifdef CORENEURON_ENABLE_PRESENT_TABLE
135 cnrn_target_delete_update_present_table(h_ptr, len *
sizeof(T));
137 #if defined(CORENEURON_ENABLE_GPU) && !defined(CORENEURON_PREFER_OPENMP_OFFLOAD) && \
139 acc_delete(h_ptr, len *
sizeof(T));
140 #elif defined(CORENEURON_ENABLE_GPU) && defined(CORENEURON_PREFER_OPENMP_OFFLOAD) && \
144 throw std::runtime_error(
145 "cnrn_target_delete() not implemented without OpenACC/OpenMP and gpu build");
149 template <
typename T>
154 std::size_t len = 1) {
156 #if defined(CORENEURON_ENABLE_GPU) && !defined(CORENEURON_PREFER_OPENMP_OFFLOAD) && \
158 acc_memcpy_to_device(d_ptr,
const_cast<T*
>(h_ptr), len *
sizeof(T));
159 #elif defined(CORENEURON_ENABLE_GPU) && defined(CORENEURON_PREFER_OPENMP_OFFLOAD) && \
161 omp_target_memcpy(d_ptr,
162 const_cast<T*
>(h_ptr),
166 omp_get_default_device(),
167 omp_get_initial_device());
169 throw std::runtime_error(
170 "cnrn_target_memcpy_to_device() not implemented without OpenACC/OpenMP and gpu build");
174 template <
typename T>
178 std::size_t len = 1) {
184 #define cnrn_target_copyin(...) cnrn_target_copyin(__FILE__, __LINE__, __VA_ARGS__)
185 #define cnrn_target_delete(...) cnrn_target_delete(__FILE__, __LINE__, __VA_ARGS__)
186 #define cnrn_target_is_present(...) \
187 cnrn_target_deviceptr_or_present(__FILE__, __LINE__, false, __VA_ARGS__)
188 #define cnrn_target_deviceptr(...) \
189 cnrn_target_deviceptr_or_present(__FILE__, __LINE__, true, __VA_ARGS__)
190 #define cnrn_target_memcpy_to_device(...) \
191 cnrn_target_memcpy_to_device(__FILE__, __LINE__, __VA_ARGS__)
192 #define cnrn_target_update_on_device(...) \
193 cnrn_target_update_on_device(__FILE__, __LINE__, __VA_ARGS__)
void cnrn_target_delete_debug(std::string_view file, int line, std::size_t sizeof_T, std::type_info const &typeid_T, void const *h_ptr, std::size_t len)
void cnrn_target_update_on_device(std::string_view file, int line, const T *h_ptr, std::size_t len=1)
void cnrn_target_delete(std::string_view file, int line, T *h_ptr, std::size_t len=1)
void cnrn_target_memcpy_to_device(std::string_view file, int line, T *d_ptr, const T *h_ptr, std::size_t len=1)
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
T * cnrn_target_copyin(std::string_view file, int line, const T *h_ptr, std::size_t len=1)
void cnrn_target_copyin_debug(std::string_view file, int line, std::size_t sizeof_T, std::type_info const &typeid_T, void const *h_ptr, std::size_t len, void *d_ptr)
#define nrn_pragma_omp(x)
T * cnrn_target_deviceptr_or_present(std::string_view file, int line, bool must_be_present_or_null, const T *h_ptr)
void cnrn_target_memcpy_to_device_debug(std::string_view file, int line, std::size_t sizeof_T, std::type_info const &typeid_T, void const *h_ptr, std::size_t len, void *d_ptr)
void cnrn_target_is_present_debug(std::string_view file, int line, std::type_info const &typeid_T, void const *h_ptr, void *d_ptr)
void cnrn_target_deviceptr_debug(std::string_view file, int line, std::type_info const &typeid_T, void const *h_ptr, void *d_ptr)