About

This is a minimal test case to attempt to recreate a specific problem diagonalizing a matrix in a Psi4 test case.

Compiling

Intel Compilers

icpc -std=c++14 -mkl test.cc

GCC with LAPACK

g++ test.cc  -std=c++14  /your/path/to/lapack/lib/liblapack.a /your/path/to/lapack/lib/libblas.a /your/path/to/gcc/lib64/libgfortran.so

(the last part is only needed if BLAS/LAPACK need libgfortran)

macOS

g++ test.cc  -std=c++14 -framework Accelerate