diff --git a/tests/unit_tests/blas/include/test_common.hpp b/tests/unit_tests/blas/include/test_common.hpp index 9ad67ed5a..7358e4361 100644 --- a/tests/unit_tests/blas/include/test_common.hpp +++ b/tests/unit_tests/blas/include/test_common.hpp @@ -564,8 +564,8 @@ bool check_equal_trsv_vector(vec1 &v, vec2 &v_ref, int n, int inc, int error_mag } template -static bool check_equal_matrix(acc1 &M, acc2 &M_ref, oneapi::mkl::layout layout, int m, int n, - int ld, int error_mag, std::ostream &out) { +bool check_equal_matrix(acc1 &M, acc2 &M_ref, oneapi::mkl::layout layout, int m, int n, int ld, + int error_mag, std::ostream &out) { bool good = true; int idx, count = 0; for (int j = 0; j < n; j++) { @@ -586,8 +586,8 @@ static bool check_equal_matrix(acc1 &M, acc2 &M_ref, oneapi::mkl::layout layout, } template -static bool check_equal_matrix(const fp *M, const fp *M_ref, oneapi::mkl::layout layout, int m, - int n, int ld, int error_mag, std::ostream &out) { +bool check_equal_matrix(const fp *M, const fp *M_ref, oneapi::mkl::layout layout, int m, int n, + int ld, int error_mag, std::ostream &out) { bool good = true; int idx, count = 0; for (int j = 0; j < n; j++) { @@ -608,9 +608,9 @@ static bool check_equal_matrix(const fp *M, const fp *M_ref, oneapi::mkl::layout } template -static bool check_equal_matrix(acc1 &M, acc2 &M_ref, oneapi::mkl::layout layout, - oneapi::mkl::uplo upper_lower, int m, int n, int ld, int error_mag, - std::ostream &out) { +bool check_equal_matrix(acc1 &M, acc2 &M_ref, oneapi::mkl::layout layout, + oneapi::mkl::uplo upper_lower, int m, int n, int ld, int error_mag, + std::ostream &out) { bool good = true; int idx, count = 0; for (int j = 0; j < n; j++) {