Limit direct sgemm to x86_64

This commit is contained in:
Martin Kroeker 2020-08-18 14:13:15 +02:00 committed by GitHub
parent b86214e434
commit a7fc14c501
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -134,13 +134,12 @@ gotoblas_t TABLE_NAME = {
srot_kTS, saxpy_kTS, sscal_kTS, sswap_kTS,
sgemv_nTS, sgemv_tTS, sger_kTS,
ssymv_LTS, ssymv_UTS,
#ifdef ARCH_X86_64
sgemm_directTS,
sgemm_direct_performantTS,
#else
sgemm_direct,
sgemm_direct_performant,
#endif
sgemm_kernelTS, sgemm_betaTS,
#if SGEMM_DEFAULT_UNROLL_M != SGEMM_DEFAULT_UNROLL_N
sgemm_incopyTS, sgemm_itcopyTS,