Merge pull request #3544 from giordano/mg/gcc6

Fix compilation of Skylake AVX512 kernels with GCC 6
This commit is contained in:
Martin Kroeker 2022-02-23 23:57:57 +01:00 committed by GitHub
commit d50287fa5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -590,6 +590,6 @@ int CNAME(BLASLONG M, BLASLONG N, BLASLONG K, FLOAT * A, BLASLONG lda, FLOAT alp
return 0; return 0;
} }
#else #else
#include ../generic/gemm_small_matrix_kernel_nn.c #include "../generic/gemm_small_matrix_kernel_nn.c"
#endif #endif

View File

@ -322,6 +322,6 @@ int CNAME(BLASLONG M, BLASLONG N, BLASLONG K, FLOAT * A, BLASLONG lda, FLOAT alp
return 0; return 0;
} }
#else #else
#include ../generic/gemm_small_matrix_kernel_tn.c #include "../generic/gemm_small_matrix_kernel_tn.c"
#endif #endif

View File

@ -612,6 +612,6 @@ int CNAME(BLASLONG M, BLASLONG N, BLASLONG K, FLOAT * A, BLASLONG lda, FLOAT alp
return 0; return 0;
} }
#else #else
#include ../generic/gemm_small_matrix_kernel_nn.c #include "../generic/gemm_small_matrix_kernel_nn.c"
#endif #endif

View File

@ -316,6 +316,6 @@ int CNAME(BLASLONG M, BLASLONG N, BLASLONG K, FLOAT * A, BLASLONG lda, FLOAT alp
return 0; return 0;
} }
#else #else
#include ../generic/gemm_small_matrix_kernel_tn.c #include "../generic/gemm_small_matrix_kernel_tn.c"
#endif #endif