Results 493 comments of Hugh Perkins

I use Lua for everything now. see any of the OpenCL files, `*.cl` in https://github.com/hughperkins/cltorch/tree/master/src/lib eg https://github.com/hughperkins/cltorch/blob/master/src/lib/THClApply.cl I've factorized out the lua templater into https://github.com/hughperkins/luacpptemplater Lua is super lightweight (~46KB...

Upgrading clBLAS is a ton of work. It might be easier just to backport the fix, into the current clBLAS fork, ie to https://github.com/hughperkins/clBLAS/tree/2.11-bugfixes (I think). Thoughts?

> Its just that I have clBlas as en external Library also and would ideally like to have clBlas as an external build rather than part of a superbuild Ah....

Thoughts on backporting this into the version of clBLAS used by DeepCL? Alternatively, thoughts on upgrading DeepCL to latest version of clBLAS? (we could do this in a branch perhaps)

Googling around for `gcoCL_DestroyTexture` got me to https://community.nxp.com/thread/304961 Looks like functions prefixed `gcoCL` are specific to Vivantes devices. A hint in this thread mentions `-lGAL`. Googling for `"-lGAL"` turns up:...

Well... can we start with getting `clinfo` to run? Can you confirm that `clinfo` does/doesnt run?

Ok. Maybe we can start with something really simple/basic. Can you paste the following into a file `simple.cpp`. its just something i found lying around on my hard drive, that...

Ok. Thats a good start. So, then, where next? Seems this line fails for you: ``` g++ -o simple simple.cpp -lOpenCL ``` with error about `undefined reference to gcKERNEL_FUNCTION_GetName`. Thats...

Ok. I dont see Vivantes in the list of khronos members? https://www.khronos.org/members/ But I see no reason why we cant get this running using the proprietary libOpenCL.so file. I'm kind...

(Hmmm, you can probably mess around with the option `USE_CLEW` of easycl a bit too actually. `clew` is an abstraction layer, that means that the program will build and run...