fix usz=32 build

This commit is contained in:
dzaima 2025-03-21 18:08:12 +02:00
parent 9a45762ecd
commit ae29c4ad45

View File

@ -153,7 +153,7 @@ def sum_accumulator{DE, unr, VT=[k]SE if int_els{DE,SE} and width{SE}==8 and has
def me{'to_scal', ...rest} = { def me{'to_scal', ...rest} = {
acc_scal+= cast_i{DE, match (SE, ...rest) { acc_scal+= cast_i{DE, match (SE, ...rest) {
{(u8),..._} => vfold{+, acc_vec} {(u8),..._} => vfold{+, acc_vec}
{(i8), n} => vfold{+, acc_vec} - n*128 {(i8), n} => vfold{+, acc_vec} - cast_i{u64, n}*128
}} }}
} }
extend finish{me} extend finish{me}