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
Copy file name to clipboardExpand all lines: README.md
+90-14Lines changed: 90 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -8,17 +8,17 @@ This project allows to run PyTorch code on [Tenstorrent](https://tenstorrent.com
8
8
9
9
The table below summarizes the results of running various ML models through our TTNN compiler. For each model, we track whether the run was successful, the number of operations before and after conversion, the number of `to_device` and `from_device` operations, performance metrics, and accuracy.
10
10
11
-
| Model | Run Success | Torch Ops Before (Unique Ops) | Torch Ops Remain (Unique Ops) | To/From Device Ops | Original Run Time (s) | Compiled Run Time(s) | Accuracy |
| Model | Run Success | Torch Ops Before (Unique Ops) | Torch Ops Remain (Unique Ops) | To/From Device Ops | Original Run Time (ms) | Compiled Run Time (ms) | Accuracy (%)|
@@ -27,12 +27,88 @@ The table below summarizes the results of running various ML models through our
27
27
**Torch Ops Before (Unique Ops)**: The total number of operations used by the model in the original Torch implementation. The number in parenthesis represents the total unique ops.
28
28
**Torch Ops Remain (Unique Ops)**: The total number of operations used after conversion to TTNN. The number in parenthesis represents the total unique ops.
29
29
**To/From Device Ops**: The number of `to/from_device` operations (data transfer to/from the device).
30
-
**Original Run Time (s)**: Execution time (in seconds) of the model before conversion.
31
-
**Compiled Run Time(s)**: Execution time (in seconds) of the model after conversion.
32
-
**Accuracy**: Model accuracy on a predefined test dataset after conversion.
30
+
**Original Run Time (ms)**: Execution time (in seconds) of the model before conversion.
31
+
**Compiled Run Time (ms)**: Execution time (in seconds) of the model after conversion.
32
+
**Accuracy (%)**: Model accuracy on a predefined test dataset after conversion.
33
33
***
34
34
**NOTE:** The total number of ops currently reflect only the first graph of a model. This will be fixed in a future update to include all graphs.
0 commit comments