Replies: 2 comments
-
Just make a mistake, row bias pattern is add (M, 1) shape bias, and I want to add (1, N) shape bias, wait for Sm90ScaledLinCombPerColBiasEltAct :D |
Beta Was this translation helpful? Give feedback.
0 replies
-
@apuaaChen to comment on column bias fusion |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I just use the
54_hopper_fp8_warp_specialized_gemm.cu
example and it usecutlass::epilogue::fusion::ScaledLinCombPerRowBiasEltActAmaxAux
, (For my case I do not need the amax and aux output, so I change to useScaledLinCombPerRowBiasEltAct
this one). Without bias add, its result is correct, but when I pass bias_ptr to it, it got wrong result.And I also check some cutlass test example, I found they use
Sm90ScaledLinCombPerRowBiasEltAct
, is this needed? And I'm not very clear how to pass arguments like scale, bias_ptr, for this newFusionCallback
, can you offer some example?Thanks~:D
emmm I found the example in
sm90_callbacks_tma_warpspecialized.hpp
Beta Was this translation helpful? Give feedback.
All reactions