Hugh Perkins
Hugh Perkins
I doubt Java is setting omp num threads. Did you grep my code just in case I am? Otherwise note that eigen is a template library, which is why you...
Unfortunately, torch bleeding-edge distro and distro-cl are not currently compatible: you have to choose one or the other. What you can do is install both, into different directories, and choose...
Even if easycl doesnt provide lua itself, the templater still needs to work. For example, when linking with Torch, Torch provides the lua engine, hence easycl does not include it....
i dont remember this symbol. might not be implemented. can you grep through the `cltorch` sourcecode, and see if it exists? (`grep -r stdall *`) On 10 April 2017 07:10:51...
ok, looks like there might be an implemetnation in `opencl/cltorch/src/lib/THClTensorMath2.cpp`. Can you see if that contains any definitions of `THClTensor_stdall`? Also, if you run the unit tests, do they work...
yeah, if its commented out, then its not implemented, and someone would need to implement it. the file you took a screenshot of is a header file, with declarations, not...
Could you copy to the cpu-side, and do standard deviation there?
Well, you need to divide your network into one part that is on the gpu and one part that is on the cpu. I forget how to do this. I...
(You might need to make your own module that takss a cltensor as input and gives a float tensor as output, and visa versa for backprop) On 30 July 2017...
cool :-)