You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently learning to port the fp16 multiplication of fbgemm to riscv. I found that the fp16 gemm uses cblas_gemm_compute, which uses partition_avx512 to partition the mb_max=120 rows of matrix A into several tiles. e.g., 49 rows is mapping to 3 x 13rows + 1 x 10rows. It could be 4 x 12rows + 1 x 1row? From my perspective, these data seem to be irregular.
I am currently learning to port the fp16 multiplication of fbgemm to riscv. I found that the fp16 gemm
uses cblas_gemm_compute
, which usespartition_avx512
to partition themb_max=120
rows of matrix A into several tiles. e.g., 49 rows is mapping to 3 x 13rows + 1 x 10rows. It could be 4 x 12rows + 1 x 1row? From my perspective, these data seem to be irregular.The text was updated successfully, but these errors were encountered: