From 7b727cb1dc6dc0b9ad9380f2f539addec500e9c9 Mon Sep 17 00:00:00 2001 From: har0ke Date: Sun, 5 Jul 2020 03:25:12 +0200 Subject: [PATCH] Use Intel MKL instead of cblas --- scripts/test.py | 4 ++-- src/BLASMul.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/test.py b/scripts/test.py index 1cd4254..c5e9462 100755 --- a/scripts/test.py +++ b/scripts/test.py @@ -107,7 +107,7 @@ if __name__ == '__main__': clang = not options.gcc for sizes in matrix_combinations: args = list(sizes) - compile_and_run("..", "builds", "generate_random", True, True, options.avx512, options.release, args) + compile_and_run("..", "builds", "generate_random", True, clang, options.avx512, options.release, args) folder = "x".join(sizes) for fidx, function in enumerate(functions): arguments = [folder, "--algorithm", function] @@ -132,4 +132,4 @@ if __name__ == '__main__': "means": ["%.3f" % numpy.mean(ts) for ts in times], "total_size": total }, f) - os.rename(output_file + ".cache", output_file) \ No newline at end of file + os.rename(output_file + ".cache", output_file) diff --git a/src/BLASMul.h b/src/BLASMul.h index 78f8669..3ddeeb5 100644 --- a/src/BLASMul.h +++ b/src/BLASMul.h @@ -5,7 +5,7 @@ #ifndef SMID_MATRIX_BLASMUL_H #define SMID_MATRIX_BLASMUL_H -#include +#include #include "Matrix.h" template