Use Intel MKL instead of cblas
This commit is contained in:
parent
8634a597ba
commit
7b727cb1dc
@ -107,7 +107,7 @@ if __name__ == '__main__':
|
|||||||
clang = not options.gcc
|
clang = not options.gcc
|
||||||
for sizes in matrix_combinations:
|
for sizes in matrix_combinations:
|
||||||
args = list(sizes)
|
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)
|
folder = "x".join(sizes)
|
||||||
for fidx, function in enumerate(functions):
|
for fidx, function in enumerate(functions):
|
||||||
arguments = [folder, "--algorithm", function]
|
arguments = [folder, "--algorithm", function]
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#ifndef SMID_MATRIX_BLASMUL_H
|
#ifndef SMID_MATRIX_BLASMUL_H
|
||||||
#define SMID_MATRIX_BLASMUL_H
|
#define SMID_MATRIX_BLASMUL_H
|
||||||
|
|
||||||
#include <cblas/cblas.h>
|
#include <mkl.h>
|
||||||
#include "Matrix.h"
|
#include "Matrix.h"
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user