CaiusTSM

Results 7 comments of CaiusTSM

A quick fix for now is to add `runtime_library_dirs=["/usr/local/lib"]` to `setup.py`. This allows it to find the shared object if CLBlast is installed without the need to manually add it...

Yes it seems OK. This could also be done for windows. The location that cmake places the files is documented here: https://cmake.org/cmake/help/latest/variable/CMAKE_INSTALL_PREFIX.html `/usr/local` for UNIX and `C:\Program Files\${Project_Name}` for windows....

Ok, how about having pyclblast be its own github repository. Then CLBlast could be added as a git sub-module. This allows for the two projects to have their own github...

Ok, I will make a new issue for it. The build from source would be optional, the default `pip install pyclblast` would behave the same way it does now (the...

I just looked at the commit and noticed that you used `CLBlast` in the path which is slightly wrong. It's case sensitive and seems to create the all lower case...

Hello, I too require texture filtering options since I want to draw some images scaled up, but with nearest filtering.

Hi, I really need this feature in order to achieve any sort of passable performance. My task is implementing matrix multiplication (GEMM), and in order for the speed to be...