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:
Smyth, Edward
2025-09-16 14:52:54 +01:00
committed by GitHub
parent a4fdad5dde
commit ae6c7d86df
39 changed files with 1051 additions and 1006 deletions

View File

@@ -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 )