ttnn-visualizer 0.38.3__py3-none-any.whl → 0.39.0__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.
@@ -1 +1 @@
1
- import{_ as o,a as _,b as i,p as c,I as u}from"./index-DuZqnhYU.js";var p=function(n,s){return o(void 0,void 0,void 0,function(){var a,r;return _(this,function(e){switch(e.label){case 0:return a=c(n),s!==u.STANDARD?[3,2]:[4,i(()=>import("./index-BKzgFDAn.js").then(t=>t.I),[])];case 1:return r=e.sent(),[3,4];case 2:return[4,i(()=>import("./index-BvSuWPlB.js").then(t=>t.I),[])];case 3:r=e.sent(),e.label=4;case 4:return[2,r[a]]}})})};export{p as splitPathsBySizeLoader};
1
+ import{_ as o,a as _,b as i,p as c,I as u}from"./index-Ba6DlrXF.js";var p=function(n,s){return o(void 0,void 0,void 0,function(){var a,r;return _(this,function(e){switch(e.label){case 0:return a=c(n),s!==u.STANDARD?[3,2]:[4,i(()=>import("./index-BKzgFDAn.js").then(t=>t.I),[])];case 1:return r=e.sent(),[3,4];case 2:return[4,i(()=>import("./index-BvSuWPlB.js").then(t=>t.I),[])];case 3:r=e.sent(),e.label=4;case 4:return[2,r[a]]}})})};export{p as splitPathsBySizeLoader};
@@ -34,8 +34,8 @@
34
34
  /* SERVER_CONFIG */
35
35
  </script>
36
36
 
37
- <script type="module" crossorigin src="/assets/index-DuZqnhYU.js"></script>
38
- <link rel="stylesheet" crossorigin href="/assets/index-BJweZJCB.css">
37
+ <script type="module" crossorigin src="/assets/index-Ba6DlrXF.js"></script>
38
+ <link rel="stylesheet" crossorigin href="/assets/index-B9wn2kZo.css">
39
39
  </head>
40
40
  <body>
41
41
 
ttnn_visualizer/views.py CHANGED
@@ -16,7 +16,7 @@ from flask import Blueprint
16
16
  from flask import current_app, session, request
17
17
 
18
18
  from ttnn_visualizer.csv_queries import DeviceLogProfilerQueries, OpsPerformanceQueries, OpsPerformanceReportQueries
19
- from ttnn_visualizer.decorators import with_instance
19
+ from ttnn_visualizer.decorators import with_instance, local_only
20
20
  from ttnn_visualizer.enums import ConnectionTestStates
21
21
  from ttnn_visualizer.exceptions import DataFormatError
22
22
  from ttnn_visualizer.exceptions import RemoteConnectionException
@@ -65,7 +65,7 @@ from ttnn_visualizer.utils import (
65
65
 
66
66
  logger = logging.getLogger(__name__)
67
67
 
68
- api = Blueprint("api", __name__, url_prefix="/api")
68
+ api = Blueprint("api", __name__)
69
69
 
70
70
 
71
71
  @api.route("/operations", methods=["GET"])
@@ -170,7 +170,7 @@ def operation_detail(operation_id, instance: Instance):
170
170
  )
171
171
 
172
172
 
173
- @api.route("operation-history", methods=["GET"])
173
+ @api.route("/operation-history", methods=["GET"])
174
174
  @with_instance
175
175
  @timer
176
176
  def operation_history(instance: Instance):
@@ -436,6 +436,7 @@ def get_profiler_data_list(instance: Instance):
436
436
 
437
437
  @api.route("/profiler/<profiler_name>", methods=["DELETE"])
438
438
  @with_instance
439
+ @local_only
439
440
  def delete_profiler_report(profiler_name, instance: Instance):
440
441
  is_remote = bool(instance.remote_connection)
441
442
  config_key = "REMOTE_DATA_DIRECTORY" if is_remote else "LOCAL_DATA_DIRECTORY"
@@ -536,6 +537,7 @@ def get_profiler_performance_data(instance: Instance):
536
537
 
537
538
  @api.route("/performance/<performance_name>", methods=["DELETE"])
538
539
  @with_instance
540
+ @local_only
539
541
  def delete_performance_report(performance_name, instance: Instance):
540
542
  is_remote = bool(instance.remote_connection)
541
543
  config_key = "REMOTE_DATA_DIRECTORY" if is_remote else "LOCAL_DATA_DIRECTORY"
@@ -997,11 +999,13 @@ def use_remote_folder():
997
999
  folder = RemoteReportFolder.model_validate(folder, strict=False)
998
1000
  performance_name = None
999
1001
  remote_performance_folder = None
1002
+
1000
1003
  if profile:
1001
1004
  remote_performance_folder = RemoteReportFolder.model_validate(profile, strict=False)
1002
1005
  performance_name = remote_performance_folder.reportName
1006
+
1003
1007
  data_directory = current_app.config["REMOTE_DATA_DIRECTORY"]
1004
- profiler_name = folder.reportName
1008
+ profiler_name = folder.remotePath.split("/")[-1]
1005
1009
  folder_name = folder.remotePath.split("/")[-1]
1006
1010
 
1007
1011
  connection_directory = Path(data_directory, connection.host, current_app.config["PROFILER_DIRECTORY_NAME"], folder_name)
@@ -1095,13 +1099,3 @@ def get_npe_data(instance: Instance):
1095
1099
  npe_data = json.load(file)
1096
1100
 
1097
1101
  return jsonify(npe_data)
1098
-
1099
-
1100
- @api.route("/config.js", methods=["GET"])
1101
- def config_js():
1102
- config = {
1103
- "SERVER_MODE": current_app.config["SERVER_MODE"],
1104
- "API_PATH": current_app.config["API_PATH"],
1105
- }
1106
- js = f"window.TTNN_VISUALIZER_CONFIG = {json.dumps(config)};"
1107
- return Response(js, mimetype="application/javascript")
@@ -0,0 +1,128 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
10
+
11
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
12
+
13
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
14
+
15
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
16
+
17
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
18
+
19
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
20
+
21
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
22
+
23
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
24
+
25
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
26
+
27
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
28
+
29
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
30
+
31
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
32
+
33
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
34
+
35
+ (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
36
+
37
+ (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
38
+
39
+ (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
40
+
41
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
42
+
43
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
44
+
45
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
46
+
47
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
48
+
49
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
50
+
51
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
52
+
53
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
54
+
55
+ END OF TERMS AND CONDITIONS
56
+
57
+ APPENDIX: How to apply the Apache License to your work.
58
+
59
+ To apply the Apache License to your work, attach the following
60
+ boilerplate notice, with the fields enclosed by brackets "[]"
61
+ replaced with your own identifying information. (Don't include
62
+ the brackets!) The text should be enclosed in the appropriate
63
+ comment syntax for the file format. We also recommend that a
64
+ file or class name and description of purpose be included on the
65
+ same "printed page" as the copyright notice for easier
66
+ identification within third-party archives.
67
+
68
+ Copyright (c) 2024 Tenstorrent AI ULC
69
+
70
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
71
+
72
+ http://www.apache.org/licenses/LICENSE-2.0
73
+
74
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
75
+
76
+ Third-Party Dependencies:
77
+
78
+ The following separate and independent dependencies are utilized by this project but are not distributed as part of the software and are subject to their own license terms listed as follows:
79
+
80
+ - @blueprintjs/colors – Apache-2.0 – https://github.com/palantir/blueprint/blob/develop/packages/colors/LICENSE
81
+ - @blueprintjs/core – Apache-2.0 – https://github.com/palantir/blueprint/blob/develop/packages/core/LICENSE
82
+ - @blueprintjs/icons – Apache-2.0 – https://github.com/palantir/blueprint/blob/develop/packages/icons/LICENSE
83
+ - @blueprintjs/select – Apache-2.0 – https://github.com/palantir/blueprint/blob/develop/packages/select/LICENSE
84
+ - @blueprintjs/table – Apache-2.0 – https://github.com/palantir/blueprint/blob/develop/packages/table/LICENSE
85
+ - @tanstack/react-virtual – MIT – https://github.com/TanStack/virtual/blob/main/LICENSE
86
+ - @types/tinycolor2 – MIT – https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/tinycolor2/LICENSE
87
+ - axios – MIT – https://github.com/axios/axios/blob/v1.x/LICENSE
88
+ - css-select – BSD‑2-Clause – https://github.com/fb55/css-select/blob/master/LICENSE
89
+ - dom-serializer – MIT – https://github.com/cheeriojs/dom-serializer/blob/master/LICENSE
90
+ - immutable – MIT – https://github.com/immutable-js/immutable-js/blob/master/LICENSE
91
+ - jotai – MIT – https://github.com/pmndrs/jotai/blob/main/LICENSE
92
+ - mini-svg-data-uri – MIT – https://github.com/tigt/mini-svg-data-uri/blob/master/LICENSE
93
+ - normalize.css – MIT – https://github.com/necolas/normalize.css/blob/master/LICENSE.md
94
+ - papaparse – MIT – https://github.com/mholt/PapaParse/blob/master/LICENSE
95
+ - plotly.js – MIT – https://github.com/plotly/plotly.js/blob/master/LICENSE
96
+ - react – MIT – https://github.com/facebook/react/blob/main/LICENSE
97
+ - react-dom – MIT – https://github.com/facebook/react/blob/main/LICENSE
98
+ - react-helmet-async – MIT – https://github.com/staylor/react-helmet-async/blob/main/LICENSE
99
+ - react-plotly.js – MIT – https://github.com/plotly/react-plotly.js/blob/master/LICENSE
100
+ - react-query – MIT – https://github.com/TanStack/query/blob/main/LICENSE
101
+ - react-router – MIT – https://github.com/remix-run/react-router/blob/main/LICENSE
102
+ - react-router-dom – MIT – https://github.com/remix-run/react-router/blob/main/LICENSE.md
103
+ - react-toastify – MIT – https://github.com/fkhadra/react-toastify/blob/main/LICENSE
104
+ - socket.io-client – MIT – https://www.npmjs.com/package/socket.io-client
105
+ - tinycolor2 – MIT – https://github.com/bgrins/TinyColor/blob/master/LICENSE
106
+ - vis-data – Dual-license Apache‑2.0 or MIT – https://github.com/visjs/vis-data/blob/master/LICENSE-MIT and LICENSE-APACHE-2.0
107
+ - vis-network – Dual-license Apache‑2.0 or MIT – part of vis.js suite; see https://almende.github.io/vis/ (“Vis.js is dual licensed under both Apache-2.0 and MIT”)
108
+
109
+ - Flask – BSD‑3‑Clause – https://github.com/pallets/flask/blob/main/LICENSE.txt
110
+ - gunicorn – MIT – https://github.com/benoitc/gunicorn/blob/master/LICENSE
111
+ - uvicorn – BSD‑3‑Clause – https://github.com/encode/uvicorn/blob/master/LICENSE.md
112
+ - paramiko~=3.4.0 – LGPL‑2.1+ – https://github.com/paramiko/paramiko/blob/main/LICENSE
113
+ - flask_cors – MIT – https://github.com/corydolphin/flask-cors/blob/main/LICENSE
114
+ - pydantic – MIT – https://github.com/pydantic/pydantic-settings/blob/main/LICENSE
115
+ - setuptools – MIT – https://github.com/pypa/setuptools/blob/main/LICENSE
116
+ - python-dotenv – BSD‑3‑Clause – https://github.com/theskumar/python-dotenv/blob/main/LICENSE
117
+ - flask-sqlalchemy – BSD‑3‑Clause – https://github.com/pallets-eco/flask-sqlalchemy/blob/main/LICENSE
118
+ - flask-socketio – MIT – https://github.com/miguelgrinberg/Flask-SocketIO/blob/main/LICENSE
119
+ - flask-session – BSD‑3‑Clause – https://github.com/pallets-eco/flask-session/blob/development/LICENSE.rst
120
+ - PyYAML – MIT – https://github.com/yaml/pyyaml/blob/main/LICENSE
121
+ - gevent – MIT – https://github.com/gevent/gevent/blob/master/LICENSE
122
+ - pandas – BSD‑3‑Clause – https://github.com/pandas-dev/pandas/blob/main/LICENSE
123
+ - wheel – MIT https://opensource.org/license/mit
124
+ - build – MIT https://opensource.org/license/mit
125
+ - tt-perf-report – MIT https://opensource.org/license/mit
126
+ - zstd (python-zstandard) – BSD‑3‑Clause – https://github.com/indygreg/python-zstandard/blob/main/LICENSE
127
+
128
+ - Upload Release Assets - GitHub Action - MIT - https://github.com/AButler/upload-release-assets/blob/master/LICENSE
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ttnn_visualizer
3
- Version: 0.38.3
3
+ Version: 0.39.0
4
4
  Summary: TT-NN Visualizer
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -1,7 +1,7 @@
1
1
  ttnn_visualizer/__init__.py,sha256=tVr9rTN1gXorz5XQQYmcRkzeEYjDGAKez1gP0oOIYeY,94
2
- ttnn_visualizer/app.py,sha256=ZlexHiaia389xF5YKyEWb0A7QTQpu8599OH9lnLKshY,6284
2
+ ttnn_visualizer/app.py,sha256=01SmOzHHdL6wL2-_cgVdYUx4_4LwNKJ1nncn5uWOZ9w,6859
3
3
  ttnn_visualizer/csv_queries.py,sha256=yFh3pUex6l9elGtSKhBVIZKEBOVmKyFpwTWozy1XxoY,22074
4
- ttnn_visualizer/decorators.py,sha256=T9jY4UShhEAh6q6E-FBQEp0KAFS-deUPk1T_4lTBF3U,4202
4
+ ttnn_visualizer/decorators.py,sha256=uzvpeJQjjFkcyPco5F_OuD2bSR-Y1ZqteITmC8VhMf4,4519
5
5
  ttnn_visualizer/enums.py,sha256=SEIqp1tlc_zw2vQ8nHH9YTaV0m3Cb8fjn_goqz5wurE,203
6
6
  ttnn_visualizer/exceptions.py,sha256=iwDejaYUkRwHhpv8bc16X_2ax-2QmFqgaajbHvQImN0,1055
7
7
  ttnn_visualizer/extensions.py,sha256=AW2aujcvayePfrwovVcsXIUkCFe_k2T4Vk3OblZd4Bk,380
@@ -12,23 +12,23 @@ ttnn_visualizer/queries.py,sha256=KC4WtI6Pf3LL_LqHXQTC5zVd-HvjJLWY4Stndd0z0qs,13
12
12
  ttnn_visualizer/remote_sqlite_setup.py,sha256=FXZTT4_-7zPG6rooXJ7o3a12r86hRzKt87qfUiKdMcs,3269
13
13
  ttnn_visualizer/requirements.txt,sha256=9OKs0ZPl1QmeewA8I59cHCNNLlVfy6NuWk0DyNgnrEg,384
14
14
  ttnn_visualizer/serializers.py,sha256=7kjtxp3NEpTlBKUNsxdtUcOM23pAyIt5MR-XTl85bVw,8028
15
- ttnn_visualizer/settings.py,sha256=HIypkm3GVYSTOmtpFkP1uq5vD9MEfy6sCc1I4hL9tMg,4472
15
+ ttnn_visualizer/settings.py,sha256=4u0WvN-Me2Fzp7WMXSM2Tmspeb0Gvm0EXSeuVwmzGQM,4474
16
16
  ttnn_visualizer/sftp_operations.py,sha256=Sn13vkkQoRifCO3SCNGo6ORlwaHB4MO4uSxxo_7m8Dk,17906
17
17
  ttnn_visualizer/sockets.py,sha256=GAvReqKaT0YQyeb0kf7ndtL1odLldHCpbbKkr0INXRM,3624
18
18
  ttnn_visualizer/ssh_client.py,sha256=dTkxzAFCGKyiZL1_LHx23Gn4y0oW4yKfGKjTxuqcx8I,2679
19
19
  ttnn_visualizer/utils.py,sha256=9Ier5XBD4vHzvtIxfbIRnsP1Is03J2usUmhfB5gSqqc,6186
20
- ttnn_visualizer/views.py,sha256=f-k9vZxJfIKhyLWWhQWBP7P4vgXi_KI7sDwuLMrp258,39710
20
+ ttnn_visualizer/views.py,sha256=tx6ttFeDWeb6Qr1VbQgiCW6-ISmUyTgfVsKCHrkg_10,39428
21
21
  ttnn_visualizer/bin/docker-entrypoint-web,sha256=uuv6aubpMCfOcuvDBxwBDITE8PN39teuwyJ2zA5KWuw,413
22
22
  ttnn_visualizer/bin/pip3-install,sha256=nbSRT4GfJQIQ9KTNO3j-6b5WM4lrx9XA4GBlAURRMws,502
23
- ttnn_visualizer/static/index.html,sha256=LIPYoPrXxmvHN6vjeO6JUIfWi_XjN5_ahCHqnr6DH28,1100
24
- ttnn_visualizer/static/assets/allPaths-Ysrp65Ak.js,sha256=D-WNIk2fkY3YiWfE4wfV9p7R_LbaeTdN7WMZB4iT4I8,309
25
- ttnn_visualizer/static/assets/allPathsLoader-RgZewRv3.js,sha256=kTWdLBhZi3weKmjAb2JS7c__ixnQ3ihS4qil756USAw,550
26
- ttnn_visualizer/static/assets/index-BJweZJCB.css,sha256=868h1AtLcJyd_IPO0Bw_wHfkz9IqJacajnELnZRYX1M,623449
23
+ ttnn_visualizer/static/index.html,sha256=HuiAANUm6it1QlL4N8YndQ4OxZJ2tq8wPMB0H6OPaoA,1100
24
+ ttnn_visualizer/static/assets/allPaths-BYcRoLEw.js,sha256=dkHbATvkWXMdM2y-0xPX2nkDr5zC4TV3x_gvESSqglM,309
25
+ ttnn_visualizer/static/assets/allPathsLoader-CNKgAYcC.js,sha256=veG1ku1gnvFc5BpL4RW8gn9qcKJ4DmTyjvx2RvPyJjU,550
26
+ ttnn_visualizer/static/assets/index-B9wn2kZo.css,sha256=jaE7Fbzx-v2wBHHh7LjcNmcunkjpmRMnkP6QLt61_aQ,623350
27
27
  ttnn_visualizer/static/assets/index-BKzgFDAn.js,sha256=Pu504I3PJMoop2k0KQxrd1qKuS3zR5KtvTTdz9IhfeY,283793
28
+ ttnn_visualizer/static/assets/index-Ba6DlrXF.js,sha256=wSDS7nQP4HcIz9FNT0BIeJ5cbO_tvWbN7lLQsEQcRcM,6912604
28
29
  ttnn_visualizer/static/assets/index-BvSuWPlB.js,sha256=43E6se9tLaZkX7kCG4waDG_vyL4yED6SEaDKLt3Nw_s,292382
29
- ttnn_visualizer/static/assets/index-DuZqnhYU.js,sha256=47UJq5VuQ2MQwz-WjeLopO3YAwfd-4dmzA5djfAM_nk,6911118
30
30
  ttnn_visualizer/static/assets/site-BTBrvHC5.webmanifest,sha256=Uy_XmnGuYFVf-OZuma2NvgEPdrCrevb3HZvaxSIHoA0,456
31
- ttnn_visualizer/static/assets/splitPathsBySizeLoader-CPmfblnz.js,sha256=WVroQ9dhJITyvfLHG_lf6Oc_gZXZ-FHy3qB4LpISTMo,472
31
+ ttnn_visualizer/static/assets/splitPathsBySizeLoader-2S0DVWGR.js,sha256=XgsrXWc30Vm_sqxFOzjNuFGBh7RodcyACMLx8NAzDgE,472
32
32
  ttnn_visualizer/static/favicon/android-chrome-192x192.png,sha256=BZWA09Zxaa3fXbaeS6nhWo2e-DUSjm9ElzNQ_xTB5XU,6220
33
33
  ttnn_visualizer/static/favicon/android-chrome-512x512.png,sha256=HBiJSZyguB3o8fMJuqIGcpeBy_9JOdImme3wD02UYCw,62626
34
34
  ttnn_visualizer/static/favicon/favicon-32x32.png,sha256=Zw201qUsczQv1UvoQvJf5smQ2ss10xaTeWxmQNYCGtY,480
@@ -37,10 +37,10 @@ ttnn_visualizer/static/sample-data/cluster-desc.yaml,sha256=LMxOmsRUXtVVU5ogzYkX
37
37
  ttnn_visualizer/tests/__init__.py,sha256=tVr9rTN1gXorz5XQQYmcRkzeEYjDGAKez1gP0oOIYeY,94
38
38
  ttnn_visualizer/tests/test_queries.py,sha256=74JgzuA3Kj1DPjLexI-YCOl8sgMi9L1I1wkNdzeHih8,16602
39
39
  ttnn_visualizer/tests/test_serializers.py,sha256=XyS5f8JK234CtizslrQ49hhxaz7RmhkEbVTaxOvdSd4,18490
40
- ttnn_visualizer-0.38.3.dist-info/LICENSE,sha256=9PAc2ioRHyJdv_uOTLrNxsRwroOJJKicHoRP7kkdVyE,15800
41
- ttnn_visualizer-0.38.3.dist-info/LICENSE_understanding.txt,sha256=pymi-yb_RvYM9p2ZA4iSNsImcvhDBBxlGuJCY9dTq7M,233
42
- ttnn_visualizer-0.38.3.dist-info/METADATA,sha256=mtF4fBhPRml3BpIvao3sWyJ5pi4qheZKiUYKQDfvPJ4,7393
43
- ttnn_visualizer-0.38.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
44
- ttnn_visualizer-0.38.3.dist-info/entry_points.txt,sha256=QpuUpkmQ_mEHJTMqOBdU0MH2Z4WF_9iFsGACeyyAO1E,61
45
- ttnn_visualizer-0.38.3.dist-info/top_level.txt,sha256=M1EGkvDOuIfbhDbcUdz2-TSdmCtDoQ2Uyag9k5JLDSY,16
46
- ttnn_visualizer-0.38.3.dist-info/RECORD,,
40
+ ttnn_visualizer-0.39.0.dist-info/LICENSE,sha256=hNGJrvu1cl2PdcKc1PHyakq_p30FA1dzm3gxnd-hNhQ,15014
41
+ ttnn_visualizer-0.39.0.dist-info/LICENSE_understanding.txt,sha256=pymi-yb_RvYM9p2ZA4iSNsImcvhDBBxlGuJCY9dTq7M,233
42
+ ttnn_visualizer-0.39.0.dist-info/METADATA,sha256=OZVl3k8hOhRRXboglCR3CF5_6L0TY9Rt81Tck5OCQTI,7393
43
+ ttnn_visualizer-0.39.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
44
+ ttnn_visualizer-0.39.0.dist-info/entry_points.txt,sha256=QpuUpkmQ_mEHJTMqOBdU0MH2Z4WF_9iFsGACeyyAO1E,61
45
+ ttnn_visualizer-0.39.0.dist-info/top_level.txt,sha256=M1EGkvDOuIfbhDbcUdz2-TSdmCtDoQ2Uyag9k5JLDSY,16
46
+ ttnn_visualizer-0.39.0.dist-info/RECORD,,
@@ -1,256 +0,0 @@
1
-
2
- Apache License
3
- Version 2.0, January 2004
4
- http://www.apache.org/licenses/
5
-
6
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
-
8
- 1. Definitions.
9
-
10
- "License" shall mean the terms and conditions for use, reproduction,
11
- and distribution as defined by Sections 1 through 9 of this document.
12
-
13
- "Licensor" shall mean the copyright owner or entity authorized by
14
- the copyright owner that is granting the License.
15
-
16
- "Legal Entity" shall mean the union of the acting entity and all
17
- other entities that control, are controlled by, or are under common
18
- control with that entity. For the purposes of this definition,
19
- "control" means (i) the power, direct or indirect, to cause the
20
- direction or management of such entity, whether by contract or
21
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
- outstanding shares, or (iii) beneficial ownership of such entity.
23
-
24
- "You" (or "Your") shall mean an individual or Legal Entity
25
- exercising permissions granted by this License.
26
-
27
- "Source" form shall mean the preferred form for making modifications,
28
- including but not limited to software source code, documentation
29
- source, and configuration files.
30
-
31
- "Object" form shall mean any form resulting from mechanical
32
- transformation or translation of a Source form, including but
33
- not limited to compiled object code, generated documentation,
34
- and conversions to other media types.
35
-
36
- "Work" shall mean the work of authorship, whether in Source or
37
- Object form, made available under the License, as indicated by a
38
- copyright notice that is included in or attached to the work
39
- (an example is provided in the Appendix below).
40
-
41
- "Derivative Works" shall mean any work, whether in Source or Object
42
- form, that is based on (or derived from) the Work and for which the
43
- editorial revisions, annotations, elaborations, or other modifications
44
- represent, as a whole, an original work of authorship. For the purposes
45
- of this License, Derivative Works shall not include works that remain
46
- separable from, or merely link (or bind by name) to the interfaces of,
47
- the Work and Derivative Works thereof.
48
-
49
- "Contribution" shall mean any work of authorship, including
50
- the original version of the Work and any modifications or additions
51
- to that Work or Derivative Works thereof, that is intentionally
52
- submitted to Licensor for inclusion in the Work by the copyright owner
53
- or by an individual or Legal Entity authorized to submit on behalf of
54
- the copyright owner. For the purposes of this definition, "submitted"
55
- means any form of electronic, verbal, or written communication sent
56
- to the Licensor or its representatives, including but not limited to
57
- communication on electronic mailing lists, source code control systems,
58
- and issue tracking systems that are managed by, or on behalf of, the
59
- Licensor for the purpose of discussing and improving the Work, but
60
- excluding communication that is conspicuously marked or otherwise
61
- designated in writing by the copyright owner as "Not a Contribution."
62
-
63
- "Contributor" shall mean Licensor and any individual or Legal Entity
64
- on behalf of whom a Contribution has been received by Licensor and
65
- subsequently incorporated within the Work.
66
-
67
- 2. Grant of Copyright License. Subject to the terms and conditions of
68
- this License, each Contributor hereby grants to You a perpetual,
69
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
- copyright license to reproduce, prepare Derivative Works of,
71
- publicly display, publicly perform, sublicense, and distribute the
72
- Work and such Derivative Works in Source or Object form.
73
-
74
- 3. Grant of Patent License. Subject to the terms and conditions of
75
- this License, each Contributor hereby grants to You a perpetual,
76
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
- (except as stated in this section) patent license to make, have made,
78
- use, offer to sell, sell, import, and otherwise transfer the Work,
79
- where such license applies only to those patent claims licensable
80
- by such Contributor that are necessarily infringed by their
81
- Contribution(s) alone or by combination of their Contribution(s)
82
- with the Work to which such Contribution(s) was submitted. If You
83
- institute patent litigation against any entity (including a
84
- cross-claim or counterclaim in a lawsuit) alleging that the Work
85
- or a Contribution incorporated within the Work constitutes direct
86
- or contributory patent infringement, then any patent licenses
87
- granted to You under this License for that Work shall terminate
88
- as of the date such litigation is filed.
89
-
90
- 4. Redistribution. You may reproduce and distribute copies of the
91
- Work or Derivative Works thereof in any medium, with or without
92
- modifications, and in Source or Object form, provided that You
93
- meet the following conditions:
94
-
95
- (a) You must give any other recipients of the Work or
96
- Derivative Works a copy of this License; and
97
-
98
- (b) You must cause any modified files to carry prominent notices
99
- stating that You changed the files; and
100
-
101
- (c) You must retain, in the Source form of any Derivative Works
102
- that You distribute, all copyright, patent, trademark, and
103
- attribution notices from the Source form of the Work,
104
- excluding those notices that do not pertain to any part of
105
- the Derivative Works; and
106
-
107
- (d) If the Work includes a "NOTICE" text file as part of its
108
- distribution, then any Derivative Works that You distribute must
109
- include a readable copy of the attribution notices contained
110
- within such NOTICE file, excluding those notices that do not
111
- pertain to any part of the Derivative Works, in at least one
112
- of the following places: within a NOTICE text file distributed
113
- as part of the Derivative Works; within the Source form or
114
- documentation, if provided along with the Derivative Works; or,
115
- within a display generated by the Derivative Works, if and
116
- wherever such third-party notices normally appear. The contents
117
- of the NOTICE file are for informational purposes only and
118
- do not modify the License. You may add Your own attribution
119
- notices within Derivative Works that You distribute, alongside
120
- or as an addendum to the NOTICE text from the Work, provided
121
- that such additional attribution notices cannot be construed
122
- as modifying the License.
123
-
124
- You may add Your own copyright statement to Your modifications and
125
- may provide additional or different license terms and conditions
126
- for use, reproduction, or distribution of Your modifications, or
127
- for any such Derivative Works as a whole, provided Your use,
128
- reproduction, and distribution of the Work otherwise complies with
129
- the conditions stated in this License.
130
-
131
- 5. Submission of Contributions. Unless You explicitly state otherwise,
132
- any Contribution intentionally submitted for inclusion in the Work
133
- by You to the Licensor shall be under the terms and conditions of
134
- this License, without any additional terms or conditions.
135
- Notwithstanding the above, nothing herein shall supersede or modify
136
- the terms of any separate license agreement you may have executed
137
- with Licensor regarding such Contributions.
138
-
139
- 6. Trademarks. This License does not grant permission to use the trade
140
- names, trademarks, service marks, or product names of the Licensor,
141
- except as required for reasonable and customary use in describing the
142
- origin of the Work and reproducing the content of the NOTICE file.
143
-
144
- 7. Disclaimer of Warranty. Unless required by applicable law or
145
- agreed to in writing, Licensor provides the Work (and each
146
- Contributor provides its Contributions) on an "AS IS" BASIS,
147
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
- implied, including, without limitation, any warranties or conditions
149
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
- PARTICULAR PURPOSE. You are solely responsible for determining the
151
- appropriateness of using or redistributing the Work and assume any
152
- risks associated with Your exercise of permissions under this License.
153
-
154
- 8. Limitation of Liability. In no event and under no legal theory,
155
- whether in tort (including negligence), contract, or otherwise,
156
- unless required by applicable law (such as deliberate and grossly
157
- negligent acts) or agreed to in writing, shall any Contributor be
158
- liable to You for damages, including any direct, indirect, special,
159
- incidental, or consequential damages of any character arising as a
160
- result of this License or out of the use or inability to use the
161
- Work (including but not limited to damages for loss of goodwill,
162
- work stoppage, computer failure or malfunction, or any and all
163
- other commercial damages or losses), even if such Contributor
164
- has been advised of the possibility of such damages.
165
-
166
- 9. Accepting Warranty or Additional Liability. While redistributing
167
- the Work or Derivative Works thereof, You may choose to offer,
168
- and charge a fee for, acceptance of support, warranty, indemnity,
169
- or other liability obligations and/or rights consistent with this
170
- License. However, in accepting such obligations, You may act only
171
- on Your own behalf and on Your sole responsibility, not on behalf
172
- of any other Contributor, and only if You agree to indemnify,
173
- defend, and hold each Contributor harmless for any liability
174
- incurred by, or claims asserted against, such Contributor by reason
175
- of your accepting any such warranty or additional liability.
176
-
177
- END OF TERMS AND CONDITIONS
178
-
179
- APPENDIX: How to apply the Apache License to your work.
180
-
181
- To apply the Apache License to your work, attach the following
182
- boilerplate notice, with the fields enclosed by brackets "[]"
183
- replaced with your own identifying information. (Don't include
184
- the brackets!) The text should be enclosed in the appropriate
185
- comment syntax for the file format. We also recommend that a
186
- file or class name and description of purpose be included on the
187
- same "printed page" as the copyright notice for easier
188
- identification within third-party archives.
189
-
190
- Copyright (c) 2024 Tenstorrent AI ULC
191
-
192
- Licensed under the Apache License, Version 2.0 (the "License");
193
- you may not use this file except in compliance with the License.
194
- You may obtain a copy of the License at
195
-
196
- http://www.apache.org/licenses/LICENSE-2.0
197
-
198
- Unless required by applicable law or agreed to in writing, software
199
- distributed under the License is distributed on an "AS IS" BASIS,
200
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
- See the License for the specific language governing permissions and
202
- limitations under the License.
203
-
204
- Third-Party Dependencies:
205
-
206
- The following separate and independent dependencies are utilized by this
207
- project but are not distributed as part of the software and are subject
208
- to their own license terms listed as follows:
209
-
210
- - @blueprintjs/colors – Apache-2.0 – https://github.com/palantir/blueprint/blob/develop/packages/colors/LICENSE
211
- - @blueprintjs/core – Apache-2.0 – https://github.com/palantir/blueprint/blob/develop/packages/core/LICENSE
212
- - @blueprintjs/icons – Apache-2.0 – https://github.com/palantir/blueprint/blob/develop/packages/icons/LICENSE
213
- - @blueprintjs/select – Apache-2.0 – https://github.com/palantir/blueprint/blob/develop/packages/select/LICENSE
214
- - @blueprintjs/table – Apache-2.0 – https://github.com/palantir/blueprint/blob/develop/packages/table/LICENSE
215
- - @tanstack/react-virtual – MIT – https://github.com/TanStack/virtual/blob/main/LICENSE
216
- - @types/tinycolor2 – MIT – https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/tinycolor2/LICENSE
217
- - axios – MIT – https://github.com/axios/axios/blob/v1.x/LICENSE
218
- - css-select – BSD‑2-Clause – https://github.com/fb55/css-select/blob/master/LICENSE
219
- - dom-serializer – MIT – https://github.com/cheeriojs/dom-serializer/blob/master/LICENSE
220
- - immutable – MIT – https://github.com/immutable-js/immutable-js/blob/master/LICENSE
221
- - jotai – MIT – https://github.com/pmndrs/jotai/blob/main/LICENSE
222
- - mini-svg-data-uri – MIT – https://github.com/tigt/mini-svg-data-uri/blob/master/LICENSE
223
- - normalize.css – MIT – https://github.com/necolas/normalize.css/blob/master/LICENSE.md
224
- - papaparse – MIT – https://github.com/mholt/PapaParse/blob/master/LICENSE
225
- - plotly.js – MIT – https://github.com/plotly/plotly.js/blob/master/LICENSE
226
- - react – MIT – https://github.com/facebook/react/blob/main/LICENSE
227
- - react-dom – MIT – https://github.com/facebook/react/blob/main/LICENSE
228
- - react-helmet-async – MIT – https://github.com/staylor/react-helmet-async/blob/main/LICENSE
229
- - react-plotly.js – MIT – https://github.com/plotly/react-plotly.js/blob/master/LICENSE
230
- - react-query – MIT – https://github.com/TanStack/query/blob/main/LICENSE
231
- - react-router – MIT – https://github.com/remix-run/react-router/blob/main/LICENSE
232
- - react-router-dom – MIT – https://github.com/remix-run/react-router/blob/main/LICENSE.md
233
- - react-toastify – MIT – https://github.com/fkhadra/react-toastify/blob/main/LICENSE
234
- - socket.io-client – MIT – https://www.npmjs.com/package/socket.io-client
235
- - tinycolor2 – MIT – https://github.com/bgrins/TinyColor/blob/master/LICENSE
236
- - vis-data – Dual-license Apache‑2.0 or MIT – https://github.com/visjs/vis-data/blob/master/LICENSE-MIT and LICENSE-APACHE-2.0
237
- - vis-network – Dual-license Apache‑2.0 or MIT – part of vis.js suite; see https://almende.github.io/vis/ (“Vis.js is dual licensed under both Apache-2.0 and MIT”)
238
-
239
- - Flask – BSD‑3‑Clause – https://github.com/pallets/flask/blob/main/LICENSE.txt
240
- - gunicorn – MIT – https://github.com/benoitc/gunicorn/blob/master/LICENSE
241
- - uvicorn – BSD‑3‑Clause – https://github.com/encode/uvicorn/blob/master/LICENSE.md
242
- - paramiko~=3.4.0 – LGPL‑2.1+ – https://github.com/paramiko/paramiko/blob/main/LICENSE
243
- - flask_cors – MIT – https://github.com/corydolphin/flask-cors/blob/main/LICENSE
244
- - pydantic – MIT – https://github.com/pydantic/pydantic-settings/blob/main/LICENSE
245
- - setuptools – MIT – https://github.com/pypa/setuptools/blob/main/LICENSE
246
- - python-dotenv – BSD‑3‑Clause – https://github.com/theskumar/python-dotenv/blob/main/LICENSE
247
- - flask-sqlalchemy – BSD‑3‑Clause – https://github.com/pallets-eco/flask-sqlalchemy/blob/main/LICENSE
248
- - flask-socketio – MIT – https://github.com/miguelgrinberg/Flask-SocketIO/blob/main/LICENSE
249
- - flask-session – BSD‑3‑Clause – https://github.com/pallets-eco/flask-session/blob/development/LICENSE.rst
250
- - PyYAML – MIT – https://github.com/yaml/pyyaml/blob/main/LICENSE
251
- - gevent – MIT – https://github.com/gevent/gevent/blob/master/LICENSE
252
- - pandas – BSD‑3‑Clause – https://github.com/pandas-dev/pandas/blob/main/LICENSE
253
- - wheel – MIT https://opensource.org/license/mit
254
- - build – MIT https://opensource.org/license/mit
255
- - tt-perf-report – MIT https://opensource.org/license/mit
256
- - zstd (python-zstandard) – BSD‑3‑Clause – https://github.com/indygreg/python-zstandard/blob/main/LICENSE