mirror of
https://github.com/amd/blis.git
synced 2026-04-20 15:48:50 +00:00
Tidying code
- AMD specific BLAS1 and BLAS2 franework: changes to make variants more consistent with each other - Initialize kernel pointers to NULL where not immediately set - Fix code indentation and other other whitespace changes in DTL code and addon/aocl_gemm/frame/s8s8s32/lpgemm_s8s8s32_sym_quant.c - Fix typos in DTL comments - Add missing newline at end of test/CMakeLists.txt - Standardize on using arch_id variable name AMD-Internal: [CPUPL-6579]
This commit is contained in:
@@ -92,8 +92,8 @@ void bli_dcopyv_zen5_asm
|
||||
uint64_t n0 = (uint64_t)n;
|
||||
|
||||
/* Function pointer declaration for the function
|
||||
that will be used by this API. */
|
||||
dcopyv_ker_ft copyv_ker_ptr; // DCOPYV kernel function pointer
|
||||
that will be used by this API. */
|
||||
dcopyv_ker_ft copyv_ker_ptr = NULL; // DCOPYV kernel function pointer
|
||||
|
||||
// Selecting the kernel based on the vector length
|
||||
if ( n0 <= KER_THRESHOLD )
|
||||
|
||||
Reference in New Issue
Block a user