-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- pip wheel CI release integration - DRAM legend redesign to better support long buffer list - Tensor deallocation report in operation details (inputs/outputs only) - Memory leaks in operation details (inputs/outputs only) - CBs timeline view - Allow multiple instances of visualizer to run simultaneously - Annotate CBs on plot - Clear demarcation of CBs vs tensors and improved CBs plot output hinting - Improved ssh connection related error messaging - Improved UI for remote connection - Backwards compatibility with old data format - Fix for negative memory fragmentation records - Fix for deallocation lookup logic - Fix for ssh report list api generating 500 - Fix for L1 plot becoming randomly unresponsive
- Loading branch information
Showing
32 changed files
with
829 additions
and
471 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,22 +60,24 @@ jobs: | |
- name: get-npm-version | ||
id: package-version | ||
uses: martinbeentjes/[email protected] | ||
|
||
- name: Get wheel file name | ||
id: get_wheel | ||
run: | | ||
- name: Get wheel file name | ||
id: get_wheel | ||
run: | | ||
# Find the .whl file and store its name in a variable | ||
FILE=$(find /home/runner/work/ttnn-visualizer/ -name "*.whl" -type f) | ||
WHEEL_FILE_NAME=$(basename $FILE) | ||
echo "Found wheel file: $FILE" | ||
# Set output to the found file name | ||
echo "wheel_name=$FILE" >> $GITHUB_ENV | ||
echo "wheel_file_name=$WHEEL_FILE_NAME" >> $GITHUB_ENV | ||
- name: Upload Wheel to Release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: ${{ env.wheel_name }} | ||
asset_name: ttnn-visualizer-${{ github.event.release.tag_name }}.whl | ||
asset_content_type: application/octet-stream | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: ${{ env.wheel_name }} | ||
asset_name: ${{env.wheel_file_name}} | ||
asset_content_type: application/octet-stream |
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 |
---|---|---|
|
@@ -42,3 +42,6 @@ backend/ttnn_visualizer/static | |
backend/*egg-info | ||
build | ||
.env | ||
|
||
|
||
sessions.db |
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
Oops, something went wrong.