Todd A. Anderson

Results 60 comments of Todd A. Anderson

Would you paste the contents of ParallelAccelerator/deps/generated/config.jl here please.

If you want to use MKL, I'd recommend using the following link to get Julia itself setup for MKL. Then, I'd re-build the ParallelAccelerator package with Pkg.build("ParallelAccelerator"). Look at generated/config.jl...

Are you on the master branch of ParallelAccelerator and CompilerTools and are updated to the most recent versions? Once 0.5 is released we will tag those repos so everyone gets...

This is testing if your compiler supports blas, not if openblas is present. Looks at deps/generated/config.jl and see if openblas_lib says "" after it. If it does then openblas wasn't...

julia> function f1() a::Int32 = 1 b::Int32 = 2 (1.1, a, b, 2.2) end f1 (generic function with 1 method) julia> function f2(x, y) x[y] end f2 (generic function with...

One thing I notice directly is that you have @acc on process instead of blur. Is there a reason you did that?

In general, you apply @acc to functions where you expect a lot of computation to take place directly in. So, if you had 10 kernels, you'd put @acc on all...

Can you post a minimal example of the new error?

I wasn't seeing the same problem you were but it may have just been manifesting differently. I think I may have fixed it. You can try to checkout the master...

We know that ParallelAccelerator doesn't work with Julia 0.6. The plan is that once 0.6 gets close to release candidate status that we'll start doing the work to upgrade it....