fix bug: arch/mma_sm60.h Mma<2,2,1> calculate wrong (#1989)
This commit is contained in:
@ -228,7 +228,7 @@ struct Mma<
|
||||
__half2 const *C = reinterpret_cast<__half2 const *>(&c);
|
||||
|
||||
__half2 Dlo = __hfma2(Alo, B, C[0]);
|
||||
__half2 Dhi = __hfma2(Ahi, B, C[0]);
|
||||
__half2 Dhi = __hfma2(Ahi, B, C[1]);
|
||||
|
||||
Array<half_t, 2> * D = reinterpret_cast<Array<half_t, 2> *>(&d);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user