Tensor/window Codegen always emits float *
, which is incorrect for custom memories
#742
Labels
C: Codegen
The final C code generation
S: Available
Available to be worked upon
T: Bug
Something isn't working
@instr(x : f32[...] @ AVX2)
gets compiled into(..., float *x)
instead of(..., __mm256 x)
_data
is correct, but the vanilla{dst}
dictionary's C string is incorrect. It usesfloat *
(or sth like that) as a member of window struct, instead of the respective hw memorymem
(not justprim_type
and shape) in window codegenThe text was updated successfully, but these errors were encountered: