diff options
author | Pjotr Prins | 2017-10-14 06:00:55 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-10-14 06:00:55 +0000 |
commit | 0fe6d1332bf21a6be2c1beeb9fada6eb1a1ff244 (patch) | |
tree | a7699cf08b0547ea01ac1be82b15c55b1abecf69 /src/io.cpp | |
parent | fdb48997ee3ed2b326a92f8e0cc7f72a4b38d8c8 (diff) | |
download | pangemma-0fe6d1332bf21a6be2c1beeb9fada6eb1a1ff244.tar.gz |
More disabling of eigenlib (faster compilation) and avoid OPENBLAS_CONST which does not work on older cblas.h
Diffstat (limited to 'src/io.cpp')
-rw-r--r-- | src/io.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3017,7 +3017,7 @@ bool PlinkKin(const string &file_bed, const int display_pace, gsl_matrix_submatrix(Xlarge, 0, msize * i_vc, ni_test, msize); gsl_matrix_view kin_sub = gsl_matrix_submatrix(matrix_kin, 0, ni_test * i_vc, ni_test, ni_test); - eigenlib_dgemm("N", "T", 1.0, &X_sub.matrix, &X_sub.matrix, 1.0, + fast_dgemm("N", "T", 1.0, &X_sub.matrix, &X_sub.matrix, 1.0, &kin_sub.matrix); } } |