Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skip op verification in opDebugString (#2157)
### Ticket #2156 ### Problem description As described here #1782 `getOpDebugString` was taking more than 99% of the time of `ttmlir-translate -ttnn-to-flatbuffer` execution. From that time, 99% was spent on op verification. ### What's changed - added `assumeVefied()` to `printFlags` that are used for printing ops (the way we are running our pipelines I believe this is a safe assumption) - greatly lowers TTNN->Flatbuffer compile time (on LlamaPrefill example from #2144) compile time was lowered from ~70s -> ~1.5s (around 0.8s was spent on op printing)
- Loading branch information