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
Hi all,
I'm a beginer in TACO , and I am trying to use it to compile some stencil caculations.However,I didn't find a way to declare the extent and other attributes of axis which not included in the tensor dim.So,I am wondering is TACO capable of doing caculation for something like stencil?
Mike
The text was updated successfully, but these errors were encountered:
TACO cannot currently be used for direct stencil calculations (i.e. A(i + 1, j + 1)), but it could be used through indirect stencil operations by constructing an indirect higher order stencil matrix and multiplying by that. If you're interested in sparse stencil operations, talk to @willow-ahrens about some work she's been up to!
It's been a while, but I wanted to give the best response I could on sparse tensor compiler convolution support.
https://dl.acm.org/doi/abs/10.1145/3485505 describes TACO support for static affine expressions (A[i + 1]), which would allow you to represent each point in a stencil separately. If there are only a few points in the stencil this could be a good approach.
Hi all,
I'm a beginer in TACO , and I am trying to use it to compile some stencil caculations.However,I didn't find a way to declare the extent and other attributes of axis which not included in the tensor dim.So,I am wondering is TACO capable of doing caculation for something like stencil?
Mike
The text was updated successfully, but these errors were encountered: