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:
702
+
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):
703
703
```
704
-
Total delegated subgraphs: 86
705
-
Number of delegated nodes: 473
706
-
Number of non-delegated nodes: 430
704
+
Total delegated subgraphs: 145
705
+
Number of delegated nodes: 350
706
+
Number of non-delegated nodes: 760
707
707
```
708
708
709
709
@@ -712,13 +712,13 @@ Number of non-delegated nodes: 430
712
712
| 0 | aten__softmax_default | 12 | 0 |
713
713
| 1 | aten_add_tensor | 37 | 0 |
714
714
| 2 | aten_addmm_default | 48 | 0 |
715
-
| 3 |aten_arange_start_step| 0 |25|
715
+
| 3 |aten_any_dim| 0 |12|
716
716
|| ... |||
717
-
|23| aten_view_copy_default |170|48|
717
+
|25| aten_view_copy_default |96|122|
718
718
|| ... |||
719
-
|26| Total |473|430|
719
+
|30| Total |350|760|
720
720
721
-
From the table, the operator `aten_view_copy_default` appears 170 times in delegate graphs and 48 times in non-delegated graphs.
721
+
From the table, the operator `aten_view_copy_default` appears 96 times in delegate graphs and 122 times in non-delegated graphs.
722
722
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