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
ttnn.argmax(mul, 1, True) where mul has torch.Size([1, 7]) shape
RuntimeError: TT_THROW @ /tmp/build-via-sdist-d26xvola/ttnn-0.54.0rc18+wormhole.b0/ttnn/cpp/ttnn/device_operation.hpp:487: tt::exception
info:
Unsupported storage type
I'm not sure why this issue appeared suddenly since there doesn't seem to be any direct changes that affects this model. The model and weights also haven't changed recently either https://huggingface.co/tiiuae/falcon-7b-instruct/tree/main.
The text was updated successfully, but these errors were encountered:
Recently, there is a failure in running falcon-7b-instruct on main: https://github.com/tenstorrent/pytorch2.0_ttnn/actions/runs/12656960036/job/35270930666
It appears that this subgraph containing
aten.arange
andaten.argmax
wasn't there previously https://github.com/tenstorrent/pytorch2.0_ttnn/blob/34e84c81d517650dbd259c445957356c83531440/docs/models/Falcon/input_variations.mdbut these ops are still lowered:
These input variations have issues currently:
ttnn.arange(7, 0, -1)
ttnn.argmax(mul, 1, True)
wheremul
hastorch.Size([1, 7])
shapeI'm not sure why this issue appeared suddenly since there doesn't seem to be any direct changes that affects this model. The model and weights also haven't changed recently either https://huggingface.co/tiiuae/falcon-7b-instruct/tree/main.
The text was updated successfully, but these errors were encountered: