ArrayFire.jl icon indicating copy to clipboard operation
ArrayFire.jl copied to clipboard

Julia wrapper for the ArrayFire library

Results 45 ArrayFire.jl issues
Sort by recently updated
recently updated
newest added

See JuliaDiffEq/DifferentialEquations.jl#199 for example. Would it better if it fails to run instead?

a lot of auto-generated functions have different names now

Hello. I think I installed ```arrayfire``` library (version 3.4.2) for Windows correctly. My julia version is 0.5.2. Upon running ```Pkg.test("ArrayFire")```, I got the following errors. I want to note that...

The power shell interface works fine with both Array Fire and FileIO for loading a Tiff image. When both packages are installed and the program is run through atom, it...

When I am trying to get the fft2 of an arrayfire matrix that has a size distinct that 2^n I get the error: ``` ArrayFire Error (202) : Invalid input...

I am still a Julia newb but I am having trouble getting ArrayFire to recognize CUDA as a backend. I am using Windows 7, Julia v 0.6 and have downloaded...

Taking union works when the arrays are of length > 1: julia> Array(union(AFArray([1,2]), AFArray([4,54]))) 4-element Array{Int64,1}: 1 2 4 54 but not when arrays are of length 1: julia> Array(union(AFArray([1]),...

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.

enhancement

``` a = rand(10,10) a[1,:] # Returns row in Julia v0.4 and a vector on Julia v0.5 ``` Currently, ArrayFire returns a 2D row just like in Julia v0.4, but...