You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no store_in equivalent of: A.set_access("[offset]->{A[i]->buf_A[i + offset]}");
where offset is a tiramisu::constant. The following statement: A.store_in(buf_A, {i + offset})
generates ISL syntax {A[i]->buf_A[i + offset]} which gives error since offset is not defined. We need a way to infer or pass the initial part ([offset]->) to the map.
The text was updated successfully, but these errors were encountered:
There is no
store_in
equivalent of:A.set_access("[offset]->{A[i]->buf_A[i + offset]}");
where
offset
is a tiramisu::constant. The following statement:A.store_in(buf_A, {i + offset})
generates ISL syntax
{A[i]->buf_A[i + offset]}
which gives error since offset is not defined. We need a way to infer or pass the initial part ([offset]->
) to the map.The text was updated successfully, but these errors were encountered: