mirror of
https://github.com/amd/blis.git
synced 2026-04-19 23:28:52 +00:00
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:
@@ -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 )
|
||||
|
||||
Reference in New Issue
Block a user