-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Schedule visualization upgrade (#54)
* update Plotly visualization to display energy breakdown and spatial utilization in hover * update main files to load CostModelEvaluationLUT to display extra performance info in visualization * fix small typo in simd parser: capitalization of K dimension * allow 'all' as tiling dimension size in mapping * update tpu mapping intra_core_tiling and inter_core_tiling * rename node_hw_performances to cost_lut and rename all variables; restructure output saving paths * add required and used link bandwidth in schedule visualization * change print in memory usage visualization to logging INFO statement * ignore all .pkl and .pickle files * remove output pickle files
- Loading branch information
Showing
25 changed files
with
305 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,55 @@ | ||
- name: default | ||
core_allocation: [0, 1, 2, 3] | ||
intra_core_tiling: | ||
- D, 64 | ||
- D, all | ||
inter_core_tiling: | ||
- K, * | ||
|
||
- name: Conv | ||
core_allocation: [0, 1, 2, 3] | ||
intra_core_tiling: | ||
- K, 8 | ||
- OY, all | ||
inter_core_tiling: | ||
- K, * | ||
|
||
- name: Gemm | ||
core_allocation: [0, 1, 2, 3] | ||
intra_core_tiling: | ||
- D, all | ||
inter_core_tiling: | ||
- H, * | ||
|
||
- name: Pool | ||
core_allocation: [4] | ||
intra_core_tiling: | ||
- OY, all | ||
inter_core_tiling: | ||
- K, * | ||
|
||
- name: MaxPool | ||
core_allocation: [4] | ||
intra_core_tiling: | ||
- OY, all | ||
inter_core_tiling: | ||
- K, * | ||
|
||
- name: AveragePool | ||
core_allocation: [4] | ||
intra_core_tiling: | ||
- OY, all | ||
inter_core_tiling: | ||
- K, * | ||
|
||
- name: GlobalAveragePool | ||
core_allocation: [4] | ||
intra_core_tiling: | ||
- OY, all | ||
inter_core_tiling: | ||
- K, * | ||
|
||
- name: Add | ||
core_allocation: [5] | ||
intra_core_tiling: | ||
- D, all | ||
inter_core_tiling: | ||
- H, * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.