-
Theoretically, there's no reason this can't be supported.
```haskell
instance Bits (ArrayFire CBool) where
(.&.) = A.and
(.|.) = A.or
xor = A.bitXor
shiftL x n = A.shiftL x (scalar n)
…
dmjio updated
5 years ago
-
Arrayfire function which reads data from csv files.
Description
===========
Currently data from files must have a special header for Arrayfire to be able to know how to store such data in a array…
pnfox updated
3 years ago
-
CFFI outperforms ctypes, even on CPython.
It will also make arrayfire-python the first library that enables GPU access from PyPy.
-
- http://mchouza.wordpress.com/2011/02/21/gpgpu-with-webgl-solving-laplaces-equation/
- http://www.ibiblio.org/e-notes/webgl/gpu/contents.htm
- http://stackoverflow.com/a/22359571/200764
-
### Prerequisites
- [X] I have verified this issue is present in the `develop` branch
- [X] I have searched [open](https://github.com/MonoGame/MonoGame/issues) and [closed](https://github.com/MonoGam…
-
Multithreaded fft convolution not possible.
Description
===========
I tried to parallelize fft convolution and there is some internal thread queue that prevents parallel execution of `af::fftCo…
-
Hello,
While training a TDS seq-to-seq model, (CUDA) OOM errors (ArrayFire exceptions) are raised constantly.
Training configuration is:
- 5k hours of training data
- DGX-1v (8 x V100, each 32G…
-
It would be nice if ArrayFire could easily interface with other JuliaGPU packages such as CUBLAS etc. for the in-place BLAS and finer lower-level control.
-
I am using an AWS ARM c6gd.2xlarge Instance with Ubuntu and compiled the code for arrayfire using the Linux build instructions with CPU backend support. When running tests, the following had failures:…
-
Just got started trying to link ArrayFire into my project a few days ago, had no issues playing with the CPU backend but I've become skeptical whether the CUDA backend is actually capable of doing wha…