Re: [go-nuts] Re: OpenCL or CUDA bindings

2017-11-12 Thread heavymetalcookies
I've been having trouble with bindings because I use windows with go and go compiler uses mingw. This means that even on windows, I need the ".a" files rather than the ".lib" files for the linker. The problem is, the cuda-toolkit for windows does NOT give you the .a files. The solution: Use the "

Re: [go-nuts] Re: OpenCL or CUDA bindings

2017-11-12 Thread Ron Evans
Hello, all I've been working on some similar problems calling Windows APIs from Go. This looks promising, in order to use .lib files from within MinGW: https://stackoverflow.com/questions/11793370/how-can-i-convert-a-vsts-lib-to-a-mingw-a Anyone tried this? On Sunday, November 12, 2017 at 8:36

Re: [go-nuts] Re: OpenCL or CUDA bindings

2017-11-13 Thread Christian LeMoussel
For CUDA you have, cu package that provides an idiomatic interface to the CUDA Driver API. https://github.com/chewxy/cu -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an ema