CUDA.jl
CUDA.jl copied to clipboard
DEPRECATED: old Julia programming interface for CUDA
You're receiving this pull request because the now-deprecated [Julia TagBot GitHub App](https://github.com/apps/julia-tagbot) is installed for this repository. This pull request installs [TagBot as a GitHub Action](https://github.com/marketplace/actions/julia-tagbot). If this PR does...
I personally have been running CUDA kernals through CUDA.jl (even compiling on one computer, sending the bytecode, and using it on the other). From my use I'd say it's safe...
I sent two commit a translation into Portuguese of the README, for Brazilian developers to be contributing to the junction between Julia and CUDA. I am a Computer Science student...
CUFFT
I'm a newbie when it comes to CUDA, but a former member of my lab wrote a MEX file that uses CUDA to compute FFTs. I'm now trying to port...
Hi, I noticed that `initialize` is automatically called when the `CUDA` module is imported. I think it's better to let the user to make that call explicitly: the users will...
As I noted [here](https://github.com/JuliaGPU/CUDA.jl/commit/2caa0935a0c9cf61012a9ff26bd6e2260423c562#commitcomment-7288273), the `@cucall` macro has serious hygiene issues. Calling `eval` inside of a macro is inherently problematic since the expression comes from the caller of the macro...
I have extended the example that is described in the readme to print out the thread id. The code then looks like this: ``` C #include extern "C" // ensure...