Hi Julien:
- I'm installing LAPACK 3.1.0 on a Sun UltraSPARC III Cu.
- The compiler I'm using is f77: Sun WorkShop 6 update 2 FORTRAN 77 5.3 2001/05/15
- The options I use are -u -f -dalign -native -xO5, although I tried with -xO4 and -xO3
- The BLAS libraries I use are those of ATLAS 3.6.0 which I compiled and tested succesfully
My problem is that the testing stalls in the line
./xlintsts < stest.in > stest.out 2>&1
if I run ./xlintsts < stest.in
it will stall after this lines:
M = 50, N = 10, type 5, test 3, ratio = 0.55326E+06
M = 50, N = 10, type 6, test 1, ratio = 0.49428E+06
M = 50, N = 10, type 6, test 2, ratio = 0.18626E+06
M = 50, N = 10, type 6, test 3, ratio = 0.72327E+06
A user called Dominique told me that there could be a problem with the optimization options I used (if I understood correctly) and when I tried without optimization options i.e. f77 -u -f the test stalls in a different place:
TRANS='N', M= 5, N= 10, NRHS= 15, NB= 3, type 2, test( 2)= 0.18796E+07
TRANS='T', M= 5, N= 10, NRHS= 15, NB= 3, type 2, test( 2)= 0.11708E+07
TRANS='N', M= 5, N= 10, NRHS= 15, NB= 20, type 2, test( 2)= 0.18971E+07
TRANS='T', M= 5, N= 10, NRHS= 15, NB= 20, type 2, test( 2)= 0.82252E+06
but stalls nonetheless, another user mentioned that switching from f77 to g77 solve the problem and that's what I'm going to try no exept that f77 is specially tailored for my architecture (or so I read) and I would very much like to use it if possible.
Do you have any ideas about what the problem might be or about what might I be doing wrong?
thank you very much,
Andrés

