From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brian Gough To: Olaf Lenz Cc: gsl-discuss@sources.redhat.com Subject: Re: GSL 0.9 and Tru64 Unix Date: Wed, 19 Dec 2001 13:20:00 -0000 Message-id: <15174.7052.719039.504386@debian> References: <20010706175234.D23159@metropolitan.TechFak.Uni-Bielefeld.DE> X-SW-Source: 2001/msg00276.html Olaf Lenz writes: > Hello! > > I'm working with the GSL on Tru64 Unix on a Compaq Alpha Workstation. > The compilation and installation of GSL 0.9 works smooth and fine, so > I suppose it can be added on the list of "Supported platforms". Ok, will do. > The only problem I have is that some tests in the Eigensystem part > fail in make check. The output of running 'make check' in the 'eigen' > directory of the sources is attached to this mail. > > This may or may not be a platform specific problem, right now I can't > verify it. Any suggestions? Thanks for the bug report. The code works ok with gcc/x86 but I have not tested it beyond that. Can you send me the results of the following program, compiled with gcc tmp.c -lgsl -lgslcblas -lm this will give a dump of the raw eigenvalues/eigenvectors #include #include #include #include #include #include #include #include gsl_matrix_complex * create_random_herm_matrix(int size) { int i, j; unsigned long k = 1; gsl_matrix_complex * m = gsl_matrix_complex_alloc(size, size); for(i=0; i