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
For nanoGPT targeting the XNNPACK backend, you might see the following:
701
+
For nanoGPT targeting the XNNPACK backend, you might see the following (note that the numbers below are for illustration purposes only and actual values may vary):
702
702
```
703
-
Total delegated subgraphs: 86
704
-
Number of delegated nodes: 473
705
-
Number of non-delegated nodes: 430
703
+
Total delegated subgraphs: 145
704
+
Number of delegated nodes: 350
705
+
Number of non-delegated nodes: 760
706
706
```
707
707
708
708
@@ -711,13 +711,13 @@ Number of non-delegated nodes: 430
711
711
| 0 | aten__softmax_default | 12 | 0 |
712
712
| 1 | aten_add_tensor | 37 | 0 |
713
713
| 2 | aten_addmm_default | 48 | 0 |
714
-
| 3 |aten_arange_start_step| 0 |25|
714
+
| 3 |aten_any_dim| 0 |12|
715
715
|| ... |||
716
-
|23| aten_view_copy_default |170|48|
716
+
|25| aten_view_copy_default |96|122|
717
717
|| ... |||
718
-
|26| Total |473|430|
718
+
|30| Total |350|760|
719
719
720
-
From the table, the operator `aten_view_copy_default` appears 170 times in delegate graphs and 48 times in non-delegated graphs.
720
+
From the table, the operator `aten_view_copy_default` appears 96 times in delegate graphs and 122 times in non-delegated graphs.
721
721
To see a more detailed view, use the `format_delegated_graph()` method to get a formatted str of printout of the whole graph or use `print_delegated_graph()` to print directly:
0 commit comments