Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

squarePacked GEMM. #586

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
4 changes: 1 addition & 3 deletions frame/compat/bla_gemm.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,10 @@

#include "blis.h"


//
// Define BLAS-to-BLIS interfaces.
//

#define ENABLE_INDUCED_METHOD 0
#ifdef BLIS_BLAS3_CALLS_TAPI

#undef GENTFUNC
Expand Down Expand Up @@ -218,7 +217,6 @@ void PASTEF77(ch,blasname) \
/* Finalize BLIS. */ \
bli_finalize_auto(); \
}

#endif

#ifdef BLIS_ENABLE_BLAS
Expand Down
13 changes: 13 additions & 0 deletions kernels/zen/3/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
##Copyright (C) 2020 - 2021, Advanced Micro Devices, Inc.##

target_sources("${PROJECT_NAME}"
PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/bli_gemm_small.c
${CMAKE_CURRENT_SOURCE_DIR}/bli_syrk_small.c
${CMAKE_CURRENT_SOURCE_DIR}/bli_trsm_small.c
${CMAKE_CURRENT_SOURCE_DIR}/bli_dgemm_ref_k1.c
${CMAKE_CURRENT_SOURCE_DIR}/bli_gemm_sqp_kernels.c
${CMAKE_CURRENT_SOURCE_DIR}/bli_gemm_sqp.c
)

add_subdirectory(sup)