Skip to content
Snippets Groups Projects
Commit f07a6760 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Fix complex_helper.hpp for CUDA (in terms of not implemeted (yet))

parent 013aff2f
Branches
Tags
Loading
Pipeline #17690 failed
......@@ -7,6 +7,10 @@
#pragma once
extern "C++" {
#ifdef __CUDA_ARCH__
// TODO
#else
#include <complex>
template <class U, class V>
......@@ -64,3 +68,5 @@ auto operator/(const V &scalar, const std::complex<U> &complexNumber)
return std::complex<U>{scalar, 0} / complexNumber;
}
#endif
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment