kompute : fix basic f16 get_rows, 28 -> 26 failures

This commit is contained in:
Jared Van Bortel 2024-01-25 15:22:11 -05:00
parent 11b305082b
commit de9fba0d39

View file

@ -27,5 +27,5 @@ void main() {
const uint i = gl_WorkGroupID.x;
const int r = inB[i + pcs.inBOff];
dequantize_row_f16(r*pcs.nb01/2/*bytes for float16*/ + pcs.inAOff, i*pcs.nb1 + pcs.outOff, pcs.ne00);
dequantize_row_f16(r*pcs.nb01/2/*bytes for float16*/ + pcs.inAOff, i*pcs.nb1/4 + pcs.outOff, pcs.ne00);
}