MuGdxy
MuGdxy
I also encountered these problems. No matter if I use vcpkg or compile all the deps by myself.
1. Cuda change it's API, in 11.4, maybe you need to update to >=11.6 2. I just use Eigen.
https://github.com/MuGdxy/muda-app/tree/linear_system I test your code in debug and release mode, in the following platform: - Windows - MSVC 19.39.33522.0/CUDA 12.3.52 - Linux - GNU 11.4.0/CUDA12.4.131 but not get any error.
1. I didn't find anything about that before, maybe NV documented in the newer version? 2. I use Visual Studio most of the time, so it's ok for VS's Intellisense....
There is no specification for IDE Intellisence exactly. So the result of different IDE is undefined, especially coming across cuda code.
About: "In theory, the functions implemented in type_traits are host functions, which are not supported to be called in device function. " I think, the type_traits is just compile time...
Basic API and its impl will be: https://godbolt.org/z/j9rKhE19E
Thank you for the feedback. For a workaround, you can use `ParallelFor` in this case. And please check the test in muda, to see if they can be compiled and...
Hmm, to be honest, in my opinion, multi-dim is not a good design. (though cuda does so). Traversal in multi-dim can be simulated by 1-dim traversal, and sometimes we need...
Keep the issue open until I fix it.