Eldad Kronfeld

Results 1 issues of Eldad Kronfeld

In chapters/cpp_for_opencl.md there is an example of how to implement a kernel using C++ of complex number arithmetic. ```CPP template class complex_t { T m_re; // Real component. T m_im;...