Todd A. Anderson
Todd A. Anderson
@GravityAssisted The devel0.6 branches of CompilerTools and ParallelAccelerator now work with Julia 0.6. In order to be included in JuliaPro, we need to do a bit more work to default...
Several comments. 1) What operations were you hoping would be parallelized here? 2) With the C backend (the default under Julia 0.5), the functions optimized with ParallelAccelerator need to be...
My Windows config.jl looks similar to yours but I'm unable to replicate this issue for some other reasons. However, I can at least confirm that even though libopenblas.dll is present...
We don't support Windows right now. You could try it through cygwin and see what happens. In cygwin you could run build.sh manually and see what happens which might give...
Maybe you have an old version of g++ that doesn't support the -std=c++11 option. Can you report what "g++ --version" says? I think you need GCC 4.7 or later. You...
No, that's not the error that ehsantn was mentioning. Do you have a file libj2carray.so.1.0? If so, then build.sh worked successfully and you can go on to trying to use...
If you start a Julia REPL, and do "run(`g++ --version`)" then you should be able to see the default g++ version Julia finds. If that isn't the latest one you...
I don't think I've ever seen or heard of this behavior before. The way that we debug the system is to set PROSPECT_DEV_MODE=1 in the environment. You can do that...
I think you may be at the same point ehsantn mentioned. I tried a cpp file with: extern "C" int f1(int a, int b) { printf("a = %d, b =...
The problem with my previous example is that you can't compile the DLL with the regular cygwin g++ toolchain, which produces a dependency in the DLL on cygwin. You have...