ttnn-visualizer 0.38.1__py3-none-any.whl → 0.38.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. ttnn_visualizer/__init__.py +1 -1
  2. ttnn_visualizer/app.py +1 -1
  3. ttnn_visualizer/csv_queries.py +1 -1
  4. ttnn_visualizer/decorators.py +1 -1
  5. ttnn_visualizer/enums.py +1 -1
  6. ttnn_visualizer/exceptions.py +1 -1
  7. ttnn_visualizer/extensions.py +1 -1
  8. ttnn_visualizer/file_uploads.py +1 -1
  9. ttnn_visualizer/instances.py +1 -1
  10. ttnn_visualizer/models.py +1 -1
  11. ttnn_visualizer/queries.py +1 -1
  12. ttnn_visualizer/remote_sqlite_setup.py +1 -1
  13. ttnn_visualizer/serializers.py +1 -1
  14. ttnn_visualizer/settings.py +1 -1
  15. ttnn_visualizer/sftp_operations.py +1 -1
  16. ttnn_visualizer/sockets.py +1 -1
  17. ttnn_visualizer/ssh_client.py +1 -1
  18. ttnn_visualizer/static/assets/{allPaths-CsCWH5EN.js → allPaths-Ysrp65Ak.js} +1 -1
  19. ttnn_visualizer/static/assets/{allPathsLoader-HfSadDnW.js → allPathsLoader-RgZewRv3.js} +2 -2
  20. ttnn_visualizer/static/assets/{index-c29v4T1e.js → index-DuZqnhYU.js} +2 -2
  21. ttnn_visualizer/static/assets/{splitPathsBySizeLoader-CESplZaf.js → splitPathsBySizeLoader-CPmfblnz.js} +1 -1
  22. ttnn_visualizer/static/index.html +11 -1
  23. ttnn_visualizer/tests/__init__.py +1 -1
  24. ttnn_visualizer/tests/test_queries.py +1 -1
  25. ttnn_visualizer/tests/test_serializers.py +1 -1
  26. ttnn_visualizer/utils.py +1 -1
  27. ttnn_visualizer/views.py +1 -1
  28. {ttnn_visualizer-0.38.1.dist-info → ttnn_visualizer-0.38.3.dist-info}/METADATA +1 -1
  29. ttnn_visualizer-0.38.3.dist-info/RECORD +46 -0
  30. ttnn_visualizer-0.38.1.dist-info/RECORD +0 -46
  31. {ttnn_visualizer-0.38.1.dist-info → ttnn_visualizer-0.38.3.dist-info}/LICENSE +0 -0
  32. {ttnn_visualizer-0.38.1.dist-info → ttnn_visualizer-0.38.3.dist-info}/LICENSE_understanding.txt +0 -0
  33. {ttnn_visualizer-0.38.1.dist-info → ttnn_visualizer-0.38.3.dist-info}/WHEEL +0 -0
  34. {ttnn_visualizer-0.38.1.dist-info → ttnn_visualizer-0.38.3.dist-info}/entry_points.txt +0 -0
  35. {ttnn_visualizer-0.38.1.dist-info → ttnn_visualizer-0.38.3.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
ttnn_visualizer/app.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import argparse
6
6
  import logging
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent Inc.
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent Inc.
4
4
  import csv
5
5
  import os
6
6
  import tempfile
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import re
6
6
  from ttnn_visualizer.enums import ConnectionTestStates
ttnn_visualizer/enums.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import enum
6
6
 
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  from http import HTTPStatus
6
6
 
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  from flask_socketio import SocketIO
6
6
  from flask_static_digest import FlaskStaticDigest
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent Inc.
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent Inc.
4
4
 
5
5
  import logging
6
6
  import os
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import json
6
6
  import random
ttnn_visualizer/models.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import dataclasses
6
6
  import enum
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import json
6
6
  from typing import Generator, Dict, Any, Union
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import re
6
6
 
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import dataclasses
6
6
  from collections import defaultdict
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import os
6
6
  from pathlib import Path
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import json
6
6
  import logging
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import threading
6
6
  import time
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0
2
2
  #
3
- # SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
3
+ # SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
4
4
 
5
5
  import paramiko
6
6
  import os
@@ -1 +1 @@
1
- import{I as n}from"./index-BKzgFDAn.js";import{I as e}from"./index-BvSuWPlB.js";import{p as r,I as s}from"./index-c29v4T1e.js";function I(o,t){var a=r(o);return t===s.STANDARD?n[a]:e[a]}function p(o){return r(o)}export{n as IconSvgPaths16,e as IconSvgPaths20,I as getIconPaths,p as iconNameToPathsRecordKey};
1
+ import{I as n}from"./index-BKzgFDAn.js";import{I as e}from"./index-BvSuWPlB.js";import{p as r,I as s}from"./index-DuZqnhYU.js";function I(o,t){var a=r(o);return t===s.STANDARD?n[a]:e[a]}function p(o){return r(o)}export{n as IconSvgPaths16,e as IconSvgPaths20,I as getIconPaths,p as iconNameToPathsRecordKey};
@@ -1,2 +1,2 @@
1
- const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/allPaths-CsCWH5EN.js","assets/index-BKzgFDAn.js","assets/index-BvSuWPlB.js","assets/index-c29v4T1e.js","assets/index-BJweZJCB.css"])))=>i.map(i=>d[i]);
2
- import{_ as o,a as n,b as i}from"./index-c29v4T1e.js";var _=function(e,a){return o(void 0,void 0,void 0,function(){var t;return n(this,function(r){switch(r.label){case 0:return[4,i(()=>import("./allPaths-CsCWH5EN.js"),__vite__mapDeps([0,1,2,3,4]))];case 1:return t=r.sent().getIconPaths,[2,t(e,a)]}})})};export{_ as allPathsLoader};
1
+ const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/allPaths-Ysrp65Ak.js","assets/index-BKzgFDAn.js","assets/index-BvSuWPlB.js","assets/index-DuZqnhYU.js","assets/index-BJweZJCB.css"])))=>i.map(i=>d[i]);
2
+ import{_ as o,a as n,b as i}from"./index-DuZqnhYU.js";var _=function(e,a){return o(void 0,void 0,void 0,function(){var t;return n(this,function(r){switch(r.label){case 0:return[4,i(()=>import("./allPaths-Ysrp65Ak.js"),__vite__mapDeps([0,1,2,3,4]))];case 1:return t=r.sent().getIconPaths,[2,t(e,a)]}})})};export{_ as allPathsLoader};