diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-12-04 16:41:34 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-12-04 16:41:34 +0000 |
| commit | 4e2c47562e8b883998d5b617028d8de44f3a641d (patch) | |
| tree | 13c26d8c7a876eca976a85fa3fb12b19a0afa903 | |
| parent | Check if these lines are even reached (diff) | |
| download | pygensvm-4e2c47562e8b883998d5b617028d8de44f3a641d.tar.gz pygensvm-4e2c47562e8b883998d5b617028d8de44f3a641d.zip | |
Debugging numpy get info
| -rw-r--r-- | setup.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -112,6 +112,7 @@ def _skl_get_blas_info(): return False blas_info = get_info("blas_opt", 0) + print("\n\n*** blas_info: \n%r\n\n ***\n\n" % blas_info) if (not blas_info) or atlas_not_found(blas_info): cblas_libs = ["cblas"] blas_info.pop("libraries", None) @@ -143,6 +144,7 @@ def get_lapack_info(): return False lapack_info = get_info("lapack_opt", 0) + print("\n\n*** lapack_info: \n%r\n\n ***\n\n" % lapack_info) if (not lapack_info) or atlas_not_found(lapack_info): # This is a guess, but seems to work in practice. Need more systems to # test this fully. |
