villekf
villekf
Using solve causes various LAPACKE errors when using host input data. Description =========== Using the latest AF binary installer for Windows. This issue is only present with the OpenCL backend,...
I compute the column indices and non-zero values to the sparse matrix in an OpenCL kernel iteratively (new vectors at each iteration). The code for the sparse matrix creation is...
The following code ``` int size1 = 400; int size2 = 2100000; array HL = constant(0.f, size1, size1, f32); for (int kk = 0; kk < 2; kk++) { array...
The Forge included in the official Linux installer is currently causing MATLAB to crash (segfault) when an ArrayFire mex-code is run (the below example causes this). ``` #include "arrayfire.h" #include...
Currently jobsplitter seems to multiply integer time values set setTimeSlice, setTimeStart and setTimeStop by 10 in the virtual versions because of this [line](https://github.com/OpenGATE/Gate/blob/develop/cluster_tools/jobsplitter/src/GateMacfileParser.cc#L396) and the other similar ones later on....
Using an array, that has been used in OpenCL application, with another array causes the latter array to be accumulated until memory runs out (or program ends). Description =========== The...
On (Linux) CUDA machine, the backend returned by `af.get_backend()` remains at unified even if the backend is correctly set as OpenCL. `af.get_active_backend()` correctly returns OpenCL as the backend, but since...
Currently the OpenCL interoperability does not work on 64-bit Windows machine. The reason for this is the use of `c_int_t` which defaults to long on Windows (which on the other...
If the currently selected device number is 1 or greater, info_str will display incorrect information for the selected device. This is due to this conditional in device.py: https://github.com/arrayfire/arrayfire-python/blob/master/arrayfire/device.py#L108. That is,...
Currently the only way to add gaps between detector rings is to either add pseudo rings or manually adjust the coordinates. It would be better if the user could add...