Open kevinwuTT opened 14 hours ago
Setting to p0. We need help to get this resolved asap. We picked up latest metal wheel and ci got broken. Thank you!
ttnn.full
uses host operation and required shape is given directly, so padding is not handled.
For TILE layout, HW should be multiples of 32 as mentioned in the doc
The TT_FATAL was removed recently as part of #14611 hence the segmentation fault instead of runtime error
Describe the bug
Calling
ttnn.full
with this shape(1, 50257)
withTILE_LAYOUT
on device gives a segfault. (This shape is used in GPTNeo.)To Reproduce
However, if I have
ttnn.full
default toROW_MAJOR_LAYOUT
and callttnn.to_layout
toTILE_LAYOUT
after, I do not get any errors.Expected behavior
ttnn.full
alone should support this shape(1, 50257)
withTILE_LAYOUT
since splitting into two ops work.Please complete the following environment information:
tt-metal: tags/v0.53.0-rc39
With a previous version,
v0.53.0-rc35
there is no segfault, but this error:Might be related to this: https://github.com/tenstorrent/tt-metal/issues/14871