Today I am building julia on my debian wheezy machine. On my first build
all went apparently ok except for the failure with handling LinAlg. So, I
looked at the README.md and set the contents of the Make.user file to be
OPENBLAS_TARGET_ARCH=BARCELONA and did a make again. Oh, I should add that
when I did the initial build I had used the Make.user file with
USE_SYSTEM_BLAS=1 as I had done on my macbook pro running Yosemite. So the
second build went through and so I did make testall again. This time I copy
below the last part of the output:
From worker 2: * spawn
From worker 2: [stdio passthrough ok]
From worker 3: * backtrace
From worker 3: * priorityqueue
From worker 3: * arpack
From worker 2: * file
exception on 3: ERROR: LoadError: mismatch of non-finite elements:
a * v[:,2] = Complex{Float64}[0.3510708184533124 -
0.8448075765452452im,0.5409098805390047 +
0.4169280633379024im,1.601725134028458 -
0.3900766044198073im,-0.9287342657831045 +
0.5772334426822694im,-0.3562087668733587 +
0.22025403456360376im,0.09986508846344075 +
0.7106414642389014im,0.323809543105644 +
0.19834819844597995im,0.6536841226089468 -
1.041708885232234im,-0.6831321692699663 -
0.2844116648988878im,0.24339386054695047 + 0.24964567036597263im]
d[2] * v[:,2] = Complex{Float64}[NaN + NaN*im,NaN + NaN*im,NaN +
NaN*im,NaN + NaN*im,NaN + NaN*im,NaN + NaN*im,NaN + NaN*im,NaN + NaN*im,NaN
+ NaN*im,NaN + NaN*im]
in test_approx_eq at test.jl:125
in anonymous at no file:29
in runtests at /home/comer/julia/test/testdefs.jl:5
in anonymous at multi.jl:852
in run_work_thunk at multi.jl:603
in anonymous at task.jl:852
while loading arpack.jl, in expression starting on line 1
ERROR: LoadError: LoadError: mismatch of non-finite elements:
a * v[:,2] = Complex{Float64}[0.3510708184533124 -
0.8448075765452452im,0.5409098805390047 +
0.4169280633379024im,1.601725134028458 -
0.3900766044198073im,-0.9287342657831045 +
0.5772334426822694im,-0.3562087668733587 +
0.22025403456360376im,0.09986508846344075 +
0.7106414642389014im,0.323809543105644 +
0.19834819844597995im,0.6536841226089468 -
1.041708885232234im,-0.6831321692699663 -
0.2844116648988878im,0.24339386054695047 + 0.24964567036597263im]
d[2] * v[:,2] = Complex{Float64}[NaN + NaN*im,NaN + NaN*im,NaN +
NaN*im,NaN + NaN*im,NaN + NaN*im,NaN + NaN*im,NaN + NaN*im,NaN + NaN*im,NaN
+ NaN*im,NaN + NaN*im]
in anonymous at task.jl:1616
while loading arpack.jl, in expression starting on line 1
while loading /home/comer/julia/test/runtests.jl, in expression starting on
line 42
make[1]: *** [all] Error 1
make: *** [testall] Error 2
Can you please help me see what to do to get a clean make testall?
Thanks very much!
Comer