sixin-zh
sixin-zh
The issue is to inform the linker the right library to link with, you can change to this instead in the CMakeLists.txt: TARGET_LINK_LIBRARIES(mattorchlive TH luaT luajit ${MATLAB_LIBRARIES}) I added the...
The following cdgmm code supports the backward on GPU, it can be used in backend_skcuda.py ``` class cdgmmMul(Function): @staticmethod def forward(ctx, A, B): """ Complex pointwise multiplication between (batched) tensor...
If possible, could you help push this code to the master branch? I am not familiar with how to do it. The code is there: https://github.com/sixin-zh/kymatio/blob/master/kymatio/scattering2d/backend/backend_skcuda.py
Yes, it is.
I have not thought about how to support inplace, you can try to make it work if needed.
Hi, Can you be more precise on how to reproduce this error? Did you use the luarocks make mpit-openmpi-1.rockspec Sixin > On Nov 28, 2016, at 9:13 PM, Hao Li...
It’s indeed a strange issue. I looked online, and it looks like you can avoid the problem by ./configure -disable-dlopen I have tried this and it indeed works on Ubuntu....
Are you suggesting to support ffi in mpiT? There’s no ffi used in it so far. To support CUDA is very important though. Are there a lot of API needs...
I have tried to add the ffi.load to the test.lua, and it works with dlopen now. Thanks for the help. local ffi = require("ffi") ffi.load("libmpi",true) require 'mpiT' mpiT.Init() Sixin >...
you could make a soft link if possible. On Tue, Sep 29, 2015 at 10:34 AM, Hugh Perkins [email protected] wrote: > On ubuntu 14.04, sudo apt-get libopenmpi-dev installs mpicc to...