vexcl icon indicating copy to clipboard operation
vexcl copied to clipboard

VexCL is a C++ vector expression template library for OpenCL/CUDA/OpenMP

Results 29 vexcl issues
Sort by recently updated
recently updated
newest added

Hi, is vexcl going to support sparse matrices in CSC format (column major) in the near future?

The OpenCL Travis build is currently not working due to missing AMD toolkit. An option might be to use POCL instead. Also, missing OpenCL should not kill the JIT backend...

Hello, Judging from the source code of VexCL there is no support for complex numbers. I've got some Stocastic Differential Equation (Monte Carlo) solvers implemented in C++ that I would...

Hi, I saw in tests/svm.cpp #if defined(CL_VERSION_2_0) || defined(VEXCL_BACKEND_CUDA) I'm wondering where to get the CL_VERSION_2_0 dev files installed for Nvidia on Ubuntu 16.04? Thanks. ============ $ grep -rIli CL_VERSION_2...

ctx = new vex::Context( vex::Filter::Type(CL_DEVICE_TYPE_GPU) && vex::Filter::DoublePrecision && vex::Filter::Count(1) ); I think vex should define a dummy func in this case, so the client code no matter which backend it...

I run into the following when building on Linux Mint Maya (based on Ubuntu 12.04 LTS): [ 14%] Building CXX object tests/CMakeFiles/eval.dir/eval.cpp.o In file included from /usr/include/c++/4.6/bits/move.h:53:0, from /usr/include/c++/4.6/bits/stl_pair.h:60, from...

Hello. I trying add vexcl sorting with OpenGL buffers, that also uses int64. https://github.com/acterhd/magnum-tracer/blob/master/include/tobject.hpp I tried, but not working sorting for opengl buffers. Although I kind of respect all the...

Hello. I can't link CUDA, boost in my CMake project. How to do it? How to enable cuda dependence in CMake?

OS : Ubuntu 16.04 LTS Boost 1.62 AMD Radeon 370..but check the log Use Mesa OpenCL drivers ``` naths@naths-System-Product-Name:~/binaries/vexcl/examples$ ./devlist OpenCL devices: AMD PITCAIRN (DRM 2.43.0 / 4.4.0-38-generic, LLVM 4.0.0)...

Providing dense matrix support for VexCL would probably be of use for many people, but currently it is unclear what is the best approach to do this. Options are: 1....

enhancement