Fixed dormant type bugs in bli_kernels_knl.h.

Details:
- Fixed dormant type mismatches in the use of the prototype-generating
  macros in bli_kernels_knl.h. Specifically, some float prototypes
  were incorrectly using double as their ctype. This didn't actually
  matter until the type changes in 645d771, as previously those types
  were not used since packm was prototyped with void* pointers.
This commit is contained in:
Field G. Van Zee
2020-09-12 17:22:42 -05:00
parent 8ebb3b60e1
commit ece9f6a3ef

View File

@@ -32,11 +32,12 @@
*/
GEMM_UKR_PROT( double, s, gemm_knl_asm_24x16 )
GEMM_UKR_PROT( float, s, gemm_knl_asm_24x16 )
GEMM_UKR_PROT( double, d, gemm_knl_asm_24x8 )
PACKM_KER_PROT( double, s, packm_knl_asm_24xk )
PACKM_KER_PROT( double, s, packm_knl_asm_16xk )
PACKM_KER_PROT( float, s, packm_knl_asm_24xk )
PACKM_KER_PROT( float, s, packm_knl_asm_16xk )
PACKM_KER_PROT( double, d, packm_knl_asm_24xk )
PACKM_KER_PROT( double, d, packm_knl_asm_8xk )