ttnn-visualizer 0.47.0__py3-none-any.whl → 0.49.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.
- ttnn_visualizer/models.py +1 -0
- ttnn_visualizer/pytest_plugin.py +93 -0
- ttnn_visualizer/queries.py +1 -1
- ttnn_visualizer/sockets.py +31 -0
- ttnn_visualizer/static/assets/allPaths-G_CNx_x1.js +1 -0
- ttnn_visualizer/static/assets/allPathsLoader-s_Yfmxfp.js +2 -0
- ttnn_visualizer/static/assets/index-CnPrfHYh.js +1 -0
- ttnn_visualizer/static/assets/index-Cnc1EkDo.js +1 -0
- ttnn_visualizer/static/assets/{index-CmA3KkTi.js → index-DVrPLQJ7.js} +254 -254
- ttnn_visualizer/static/assets/index-UuXdrHif.css +7 -0
- ttnn_visualizer/static/assets/splitPathsBySizeLoader-ivxxaHxa.js +1 -0
- ttnn_visualizer/static/index.html +2 -2
- ttnn_visualizer/tests/test_serializers.py +6 -0
- ttnn_visualizer/views.py +79 -13
- {ttnn_visualizer-0.47.0.dist-info → ttnn_visualizer-0.49.0.dist-info}/METADATA +2 -1
- {ttnn_visualizer-0.47.0.dist-info → ttnn_visualizer-0.49.0.dist-info}/RECORD +21 -20
- {ttnn_visualizer-0.47.0.dist-info → ttnn_visualizer-0.49.0.dist-info}/licenses/LICENSE +13 -5
- ttnn_visualizer/static/assets/allPaths-OR2-IW-_.js +0 -1
- ttnn_visualizer/static/assets/allPathsLoader-xRXweacG.js +0 -2
- ttnn_visualizer/static/assets/index-03c8d4Gh.js +0 -1
- ttnn_visualizer/static/assets/index-DJA68-a6.css +0 -7
- ttnn_visualizer/static/assets/index-PKNBViIU.js +0 -1
- ttnn_visualizer/static/assets/splitPathsBySizeLoader-P9sdNg6R.js +0 -1
- {ttnn_visualizer-0.47.0.dist-info → ttnn_visualizer-0.49.0.dist-info}/WHEEL +0 -0
- {ttnn_visualizer-0.47.0.dist-info → ttnn_visualizer-0.49.0.dist-info}/entry_points.txt +0 -0
- {ttnn_visualizer-0.47.0.dist-info → ttnn_visualizer-0.49.0.dist-info}/licenses/LICENSE_understanding.txt +0 -0
- {ttnn_visualizer-0.47.0.dist-info → ttnn_visualizer-0.49.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
import{p as r,I as s,_ as a}from"./index-DVrPLQJ7.js";const n=async(o,_)=>{const i=r(o);let t;return _===s.STANDARD?t=await a(()=>import("./index-CnPrfHYh.js").then(e=>e.I),[]):t=await a(()=>import("./index-Cnc1EkDo.js").then(e=>e.I),[]),t[i]};export{n as splitPathsBySizeLoader};
|
@@ -34,8 +34,8 @@
|
|
34
34
|
/* SERVER_CONFIG */
|
35
35
|
</script>
|
36
36
|
|
37
|
-
<script type="module" crossorigin src="/static/assets/index-
|
38
|
-
<link rel="stylesheet" crossorigin href="/static/assets/index-
|
37
|
+
<script type="module" crossorigin src="/static/assets/index-DVrPLQJ7.js"></script>
|
38
|
+
<link rel="stylesheet" crossorigin href="/static/assets/index-UuXdrHif.css">
|
39
39
|
</head>
|
40
40
|
<body>
|
41
41
|
|
@@ -161,12 +161,14 @@ class TestSerializers(unittest.TestCase):
|
|
161
161
|
"device_id": 1,
|
162
162
|
"address": 1000,
|
163
163
|
"buffer_type": 0,
|
164
|
+
"buffer_layout": None,
|
164
165
|
"size": 256,
|
165
166
|
},
|
166
167
|
{
|
167
168
|
"device_id": 2,
|
168
169
|
"address": 2000,
|
169
170
|
"buffer_type": 1,
|
171
|
+
"buffer_layout": None,
|
170
172
|
"size": 512,
|
171
173
|
},
|
172
174
|
],
|
@@ -179,6 +181,7 @@ class TestSerializers(unittest.TestCase):
|
|
179
181
|
"device_id": 3,
|
180
182
|
"address": 3000,
|
181
183
|
"buffer_type": 1,
|
184
|
+
"buffer_layout": None,
|
182
185
|
"size": 1024,
|
183
186
|
},
|
184
187
|
],
|
@@ -260,12 +263,14 @@ class TestSerializers(unittest.TestCase):
|
|
260
263
|
"device_id": 1,
|
261
264
|
"address": 1000,
|
262
265
|
"buffer_type": 0,
|
266
|
+
"buffer_layout": None,
|
263
267
|
"size": 256,
|
264
268
|
},
|
265
269
|
{
|
266
270
|
"device_id": 2,
|
267
271
|
"address": 2000,
|
268
272
|
"buffer_type": 1,
|
273
|
+
"buffer_layout": None,
|
269
274
|
"size": 512,
|
270
275
|
},
|
271
276
|
],
|
@@ -389,6 +394,7 @@ class TestSerializers(unittest.TestCase):
|
|
389
394
|
"buffers": [
|
390
395
|
{
|
391
396
|
"address": 1000,
|
397
|
+
"buffer_layout": None,
|
392
398
|
"buffer_type": 0,
|
393
399
|
"device_id": 1,
|
394
400
|
"max_size_per_bank": 256,
|
ttnn_visualizer/views.py
CHANGED
@@ -12,6 +12,7 @@ from http import HTTPStatus
|
|
12
12
|
from pathlib import Path
|
13
13
|
from typing import List
|
14
14
|
|
15
|
+
import orjson
|
15
16
|
import yaml
|
16
17
|
import zstd
|
17
18
|
from flask import Blueprint, Response, current_app, jsonify, request, session
|
@@ -865,12 +866,10 @@ def create_npe_files():
|
|
865
866
|
data_directory = current_app.config["LOCAL_DATA_DIRECTORY"]
|
866
867
|
|
867
868
|
for file in files:
|
868
|
-
if not file.filename.endswith(".json") and not file.filename.endswith(
|
869
|
-
".npeviz.zst"
|
870
|
-
):
|
869
|
+
if not file.filename.endswith(".json") and not file.filename.endswith(".zst"):
|
871
870
|
return StatusMessage(
|
872
871
|
status=ConnectionTestStates.FAILED,
|
873
|
-
message="NPE requires a valid .json or .
|
872
|
+
message="NPE requires a valid .json or .zst file",
|
874
873
|
).model_dump()
|
875
874
|
|
876
875
|
npe_name = extract_npe_name(files)
|
@@ -1263,13 +1262,80 @@ def get_npe_data(instance: Instance):
|
|
1263
1262
|
)
|
1264
1263
|
return Response(status=HTTPStatus.NOT_FOUND)
|
1265
1264
|
|
1266
|
-
|
1267
|
-
|
1268
|
-
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1273
|
-
|
1265
|
+
try:
|
1266
|
+
if compressed_path and compressed_path.exists():
|
1267
|
+
with open(compressed_path, "rb") as file:
|
1268
|
+
compressed_data = file.read()
|
1269
|
+
uncompressed_data = zstd.uncompress(compressed_data)
|
1270
|
+
npe_data = json.loads(uncompressed_data)
|
1271
|
+
else:
|
1272
|
+
with open(uncompressed_path, "r") as file:
|
1273
|
+
npe_data = json.load(file)
|
1274
|
+
except json.JSONDecodeError as e:
|
1275
|
+
logger.error(f"Invalid JSON in NPE file: {e}")
|
1276
|
+
return Response(status=HTTPStatus.UNPROCESSABLE_ENTITY)
|
1277
|
+
|
1278
|
+
# Use orjson for much faster JSON serialization of large files
|
1279
|
+
return Response(orjson.dumps(npe_data), mimetype="application/json")
|
1280
|
+
|
1281
|
+
|
1282
|
+
@api.route("/notify", methods=["POST"])
|
1283
|
+
def notify_report_update():
|
1284
|
+
"""
|
1285
|
+
Endpoint to receive notifications about report updates and broadcast them via websockets.
|
1286
|
+
"""
|
1287
|
+
from ttnn_visualizer.sockets import (
|
1288
|
+
ExitStatus,
|
1289
|
+
ReportGenerated,
|
1290
|
+
emit_report_generated,
|
1291
|
+
)
|
1292
|
+
|
1293
|
+
try:
|
1294
|
+
data = request.get_json()
|
1295
|
+
if not data:
|
1296
|
+
return jsonify({"error": "No JSON data provided"}), 400
|
1297
|
+
|
1298
|
+
report_name = data.get("report_name")
|
1299
|
+
exit_status_str = data.get("exit_status")
|
1274
1300
|
|
1275
|
-
|
1301
|
+
if not report_name:
|
1302
|
+
return jsonify({"error": "report_name is required"}), 400
|
1303
|
+
|
1304
|
+
# Validate status
|
1305
|
+
try:
|
1306
|
+
exit_status = (
|
1307
|
+
ExitStatus(exit_status_str.upper()) if exit_status_str else None
|
1308
|
+
)
|
1309
|
+
except ValueError:
|
1310
|
+
return (
|
1311
|
+
jsonify({"error": "Invalid exit_status."}),
|
1312
|
+
400,
|
1313
|
+
)
|
1314
|
+
|
1315
|
+
# Create and emit the report update
|
1316
|
+
report_generated = ReportGenerated(
|
1317
|
+
report_name=report_name,
|
1318
|
+
exit_status=exit_status,
|
1319
|
+
profiler_path=data.get("profiler_path"),
|
1320
|
+
performance_path=data.get("performance_path"),
|
1321
|
+
)
|
1322
|
+
emit_report_generated(report_generated)
|
1323
|
+
|
1324
|
+
logger.info(f"Report generated notification processed: {report_name}")
|
1325
|
+
|
1326
|
+
return (
|
1327
|
+
jsonify(
|
1328
|
+
{
|
1329
|
+
"report_name": report_name,
|
1330
|
+
"profiler_path": report_generated.profiler_path,
|
1331
|
+
"performance_path": report_generated.performance_path,
|
1332
|
+
"exit_status": exit_status.value if exit_status else None,
|
1333
|
+
"timestamp": report_generated.timestamp,
|
1334
|
+
}
|
1335
|
+
),
|
1336
|
+
200,
|
1337
|
+
)
|
1338
|
+
|
1339
|
+
except Exception as e:
|
1340
|
+
logger.error(f"Error processing report update notification: {str(e)}")
|
1341
|
+
return jsonify({"error": "Internal server error"}), 500
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ttnn_visualizer
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.49.0
|
4
4
|
Summary: TT-NN Visualizer
|
5
5
|
Classifier: Programming Language :: Python :: 3
|
6
6
|
Classifier: License :: OSI Approved :: MIT License
|
@@ -17,6 +17,7 @@ Requires-Dist: Flask-Static-Digest==0.4.1
|
|
17
17
|
Requires-Dist: Flask==3.1.1
|
18
18
|
Requires-Dist: gevent==24.10.2
|
19
19
|
Requires-Dist: gunicorn~=23.0.0
|
20
|
+
Requires-Dist: orjson>=3.9.0
|
20
21
|
Requires-Dist: pandas==2.2.3
|
21
22
|
Requires-Dist: pydantic_core==2.27.1
|
22
23
|
Requires-Dist: pydantic==2.10.3
|
@@ -7,25 +7,26 @@ ttnn_visualizer/exceptions.py,sha256=XwTIykJpdvZV8nqrd9JZdHIYL0EBFBhTbE9H09VZluA
|
|
7
7
|
ttnn_visualizer/extensions.py,sha256=6OIRJ8-_ccfjOaXSruRXiS29jEbxp4Pyk-0JlD8IHBQ,379
|
8
8
|
ttnn_visualizer/file_uploads.py,sha256=HFcC6TBt5I0oBkiKgM2Qw1W7hpixE8TOTACS5N-rmGE,5013
|
9
9
|
ttnn_visualizer/instances.py,sha256=XctQgQXdlwtuXWFXFletRoX1m1lGUZdiW3TwIIjY0uw,11564
|
10
|
-
ttnn_visualizer/models.py,sha256=
|
11
|
-
ttnn_visualizer/
|
10
|
+
ttnn_visualizer/models.py,sha256=QCL64uynSS3WbUI05UoHIgex6eWgMGqf0-YTm1XwCwI,7854
|
11
|
+
ttnn_visualizer/pytest_plugin.py,sha256=bEG0cbqH0HUuZT5Ox9tFoexFNTyimBBPpI_jp75b54c,2629
|
12
|
+
ttnn_visualizer/queries.py,sha256=0s2zGA7CH1fbV6BWB-MhdHfWW7GhkDti4gVJyDmeCE8,9607
|
12
13
|
ttnn_visualizer/remote_sqlite_setup.py,sha256=VdJk5LfkaJo1XPC-yxy909I0AOgJF1GUjryj0Oe0O14,3498
|
13
14
|
ttnn_visualizer/serializers.py,sha256=LmjHIrFg8BLx1JKVFh9Nd_TcA7nyy1MwY2BOGnX1MKw,8029
|
14
15
|
ttnn_visualizer/settings.py,sha256=W0PCeBCGXONNfFHqI7ATCVGhKv0a02-BhwBwrB3Clag,4660
|
15
16
|
ttnn_visualizer/sftp_operations.py,sha256=9HwbPJPSO1UUQ98d5zeWAkEwR0zFPryUakcI68GqkVw,30181
|
16
|
-
ttnn_visualizer/sockets.py,sha256=
|
17
|
+
ttnn_visualizer/sockets.py,sha256=_Hdne33r4FrB2tg58Vw87FWLbgQ_ikICVp4o1Mkv2mo,4789
|
17
18
|
ttnn_visualizer/ssh_client.py,sha256=-GS2_1tdlUqVoLfRS02i3_o1fQaM39UQN-jtAnPBmzQ,13511
|
18
19
|
ttnn_visualizer/utils.py,sha256=_W990vRnup9zlWJ-g_Bggyo-wDjCYF49p0nPxWNgxrE,12934
|
19
|
-
ttnn_visualizer/views.py,sha256=
|
20
|
-
ttnn_visualizer/static/index.html,sha256=
|
21
|
-
ttnn_visualizer/static/assets/allPaths-
|
22
|
-
ttnn_visualizer/static/assets/allPathsLoader-
|
23
|
-
ttnn_visualizer/static/assets/index-
|
24
|
-
ttnn_visualizer/static/assets/index-
|
25
|
-
ttnn_visualizer/static/assets/index-
|
26
|
-
ttnn_visualizer/static/assets/index-
|
20
|
+
ttnn_visualizer/views.py,sha256=R9JD6ajxd4Z0zgbjqYGeX4L8fOUSVqDsiuQ7FSDLDvA,45331
|
21
|
+
ttnn_visualizer/static/index.html,sha256=9Gct5mpFLirIshWl30b7_TgT4fcYWq_OeYRsNPky6Iw,1135
|
22
|
+
ttnn_visualizer/static/assets/allPaths-G_CNx_x1.js,sha256=l6Ec9RqUrxT3o1AFEAPfG40uv2iZgLBV5UsA7KhIsms,255
|
23
|
+
ttnn_visualizer/static/assets/allPathsLoader-s_Yfmxfp.js,sha256=bxXd5uj9p2PVTrwhCQrFItzS3VXDwbhssIwBW8wqFhM,477
|
24
|
+
ttnn_visualizer/static/assets/index-CnPrfHYh.js,sha256=xtrmUrKcMSwTBA7zqXJ6I_L70LzG9DkO-zbC3aWJS8g,289282
|
25
|
+
ttnn_visualizer/static/assets/index-Cnc1EkDo.js,sha256=m-gmIOT0AsJcaW0TVjRpOwSm52Dfp4ZDcrdnIS4qBHA,298140
|
26
|
+
ttnn_visualizer/static/assets/index-DVrPLQJ7.js,sha256=YL1kan4zv0M5x5oZeSkl-q7PlCHnCgQb7w8rj1GNcGU,7890913
|
27
|
+
ttnn_visualizer/static/assets/index-UuXdrHif.css,sha256=gdueUx5rG_VioiyHhyblHRYqo8AkOtROM3xvEqIovGk,623039
|
27
28
|
ttnn_visualizer/static/assets/site-BTBrvHC5.webmanifest,sha256=Uy_XmnGuYFVf-OZuma2NvgEPdrCrevb3HZvaxSIHoA0,456
|
28
|
-
ttnn_visualizer/static/assets/splitPathsBySizeLoader-
|
29
|
+
ttnn_visualizer/static/assets/splitPathsBySizeLoader-ivxxaHxa.js,sha256=wl69al5zPgTKgIUKXz6yBRpjaB9rTPHVD-hqrz09ryk,281
|
29
30
|
ttnn_visualizer/static/favicon/android-chrome-192x192.png,sha256=BZWA09Zxaa3fXbaeS6nhWo2e-DUSjm9ElzNQ_xTB5XU,6220
|
30
31
|
ttnn_visualizer/static/favicon/android-chrome-512x512.png,sha256=HBiJSZyguB3o8fMJuqIGcpeBy_9JOdImme3wD02UYCw,62626
|
31
32
|
ttnn_visualizer/static/favicon/favicon-32x32.png,sha256=Zw201qUsczQv1UvoQvJf5smQ2ss10xaTeWxmQNYCGtY,480
|
@@ -33,11 +34,11 @@ ttnn_visualizer/static/favicon/favicon.svg,sha256=wDPY3VrekJ_DE1TnJ2vUy602K3S4Xe
|
|
33
34
|
ttnn_visualizer/static/sample-data/cluster-desc.yaml,sha256=LMxOmsRUXtVVU5ogzYkXUozB3dg2IzqIRJQpV_O5qMU,29618
|
34
35
|
ttnn_visualizer/tests/__init__.py,sha256=FCQeTWnXsf-Wx-fay53-lQsm0y5-GcPMUmzhE5upDx0,93
|
35
36
|
ttnn_visualizer/tests/test_queries.py,sha256=HqaDXwudZpXiigJdHkdJP8oiUc-PtHASbpLnQQpbD7A,13792
|
36
|
-
ttnn_visualizer/tests/test_serializers.py,sha256=
|
37
|
-
ttnn_visualizer-0.
|
38
|
-
ttnn_visualizer-0.
|
39
|
-
ttnn_visualizer-0.
|
40
|
-
ttnn_visualizer-0.
|
41
|
-
ttnn_visualizer-0.
|
42
|
-
ttnn_visualizer-0.
|
43
|
-
ttnn_visualizer-0.
|
37
|
+
ttnn_visualizer/tests/test_serializers.py,sha256=IJekAZRBpyOr_Ffp0dqSrnhFOU_ZZ8pHma_JO0j23TQ,18762
|
38
|
+
ttnn_visualizer-0.49.0.dist-info/licenses/LICENSE,sha256=bapl7NysYmv8aYSVxr5qFDya0vCqppyjkyyNJYosBdc,20044
|
39
|
+
ttnn_visualizer-0.49.0.dist-info/licenses/LICENSE_understanding.txt,sha256=pymi-yb_RvYM9p2ZA4iSNsImcvhDBBxlGuJCY9dTq7M,233
|
40
|
+
ttnn_visualizer-0.49.0.dist-info/METADATA,sha256=f6Pxll0vaRJggbBD6qEqYuVGGIKw0dt4sMX-AaWVy_k,7780
|
41
|
+
ttnn_visualizer-0.49.0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
|
42
|
+
ttnn_visualizer-0.49.0.dist-info/entry_points.txt,sha256=QpuUpkmQ_mEHJTMqOBdU0MH2Z4WF_9iFsGACeyyAO1E,61
|
43
|
+
ttnn_visualizer-0.49.0.dist-info/top_level.txt,sha256=M1EGkvDOuIfbhDbcUdz2-TSdmCtDoQ2Uyag9k5JLDSY,16
|
44
|
+
ttnn_visualizer-0.49.0.dist-info/RECORD,,
|
@@ -155,22 +155,30 @@ The following separate and independent dependencies are utilized by this project
|
|
155
155
|
- vitest - MIT - https://github.com/vitest-dev/vitest/blob/main/LICENSE
|
156
156
|
- vitest-canvas-mock - MIT - https://github.com/wobsoriano/vitest-canvas-mock/blob/main/LICENSE
|
157
157
|
|
158
|
-
-
|
158
|
+
- black - MIT - https://github.com/psf/black/blob/main/LICENSE
|
159
|
+
- build - MIT - https://opensource.org/license/mit
|
159
160
|
- Flask - BSD‑3‑Clause - https://github.com/pallets/flask/blob/main/LICENSE.txt
|
160
|
-
-
|
161
|
+
- Flask-Cors - MIT - https://github.com/corydolphin/flask-cors/blob/main/LICENSE
|
161
162
|
- flask-socketio - MIT - https://github.com/miguelgrinberg/Flask-SocketIO/blob/main/LICENSE
|
162
163
|
- flask-sqlalchemy - BSD‑3‑Clause - https://github.com/pallets-eco/flask-sqlalchemy/blob/main/LICENSE
|
164
|
+
- Flask-Static-Digest - MIT - https://github.com/nickjj/flask-static-digest/blob/master/LICENSE
|
163
165
|
- gevent - MIT - https://github.com/gevent/gevent/blob/master/LICENSE
|
164
166
|
- gunicorn - MIT - https://github.com/benoitc/gunicorn/blob/master/LICENSE
|
167
|
+
- isort - MIT - https://github.com/PyCQA/isort/blob/main/LICENSE
|
168
|
+
- mypy - MIT - https://github.com/python/mypy/blob/master/LICENSE
|
169
|
+
- orjson - Dual-license Apache-2.0 or MIT - https://github.com/ijl/orjson/blob/master/LICENSE-APACHE and https://github.com/ijl/orjson/blob/master/LICENSE-MIT
|
165
170
|
- pandas - BSD‑3‑Clause - https://github.com/pandas-dev/pandas/blob/main/LICENSE
|
166
171
|
- playwright - Apache-2.0 - https://github.com/microsoft/playwright-python/blob/main/LICENSE
|
172
|
+
- playwright - Apache-2.0 - https://github.com/microsoft/playwright/blob/main/LICENSE
|
167
173
|
- pydantic - MIT - https://github.com/pydantic/pydantic-settings/blob/main/LICENSE
|
174
|
+
- pydantic_core - MIT - https://github.com/pydantic/pydantic-core/blob/main/LICENSE
|
175
|
+
- pytest - MIT - https://github.com/pytest-dev/pytest/blob/main/LICENSE
|
168
176
|
- python-dotenv - BSD‑3‑Clause - https://github.com/theskumar/python-dotenv/blob/main/LICENSE
|
169
177
|
- PyYAML - MIT - https://github.com/yaml/pyyaml/blob/main/LICENSE
|
170
178
|
- setuptools - MIT - https://github.com/pypa/setuptools/blob/main/LICENSE
|
171
|
-
- tt-perf-report - MIT https://opensource.org/license/mit
|
179
|
+
- tt-perf-report - MIT - https://opensource.org/license/mit
|
172
180
|
- uvicorn - BSD‑3‑Clause - https://github.com/encode/uvicorn/blob/master/LICENSE.md
|
173
|
-
- wheel - MIT https://opensource.org/license/mit
|
174
|
-
- zstd (python-zstandard) - BSD‑3‑Clause - https://github.com/indygreg/python-zstandard/blob/main/LICENSE
|
181
|
+
- wheel - MIT - https://opensource.org/license/mit
|
182
|
+
- zstd - (python-zstandard) - BSD‑3‑Clause - https://github.com/indygreg/python-zstandard/blob/main/LICENSE
|
175
183
|
|
176
184
|
- Upload Release Assets - GitHub Action - MIT - https://github.com/AButler/upload-release-assets/blob/master/LICENSE
|
@@ -1 +0,0 @@
|
|
1
|
-
import{I as s}from"./index-03c8d4Gh.js";import{I as r}from"./index-PKNBViIU.js";import{p as n,I as c}from"./index-CmA3KkTi.js";function p(t,a){const o=n(t);return a===c.STANDARD?s[o]:r[o]}export{s as IconSvgPaths16,r as IconSvgPaths20,p as getIconPaths};
|
@@ -1,2 +0,0 @@
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/allPaths-OR2-IW-_.js","assets/index-03c8d4Gh.js","assets/index-PKNBViIU.js","assets/index-CmA3KkTi.js","assets/index-DJA68-a6.css"])))=>i.map(i=>d[i]);
|
2
|
-
import{_ as e}from"./index-CmA3KkTi.js";const s=async(t,a)=>{const{getIconPaths:o}=await e(async()=>{const{getIconPaths:r}=await import("./allPaths-OR2-IW-_.js");return{getIconPaths:r}},__vite__mapDeps([0,1,2,3,4]));return o(t,a)};export{s as allPathsLoader};
|