tritonparse 0.3.1.dev20251023071548__py3-none-any.whl → 0.3.1.dev20251025071457__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.

Potentially problematic release.


This version of tritonparse might be problematic. Click here for more details.

Files changed (28) hide show
  1. tritonparse/__main__.py +2 -0
  2. tritonparse/context_manager.py +2 -0
  3. tritonparse/event_diff.py +2 -0
  4. tritonparse/ir_analysis.py +74 -0
  5. tritonparse/ir_parser.py +2 -0
  6. tritonparse/mapper.py +2 -0
  7. tritonparse/reproducer/cli.py +2 -0
  8. tritonparse/reproducer/function_extractor.py +2 -0
  9. tritonparse/reproducer/ingestion/ndjson.py +2 -0
  10. tritonparse/reproducer/orchestrator.py +2 -0
  11. tritonparse/reproducer/placeholder_replacer.py +2 -0
  12. tritonparse/reproducer/templates/loader.py +2 -0
  13. tritonparse/reproducer/types.py +2 -0
  14. tritonparse/reproducer/utils.py +2 -0
  15. tritonparse/shared_vars.py +1 -0
  16. tritonparse/sourcemap_utils.py +24 -0
  17. tritonparse/tools/decompress_bin_ndjson.py +2 -0
  18. tritonparse/tools/format_fix.py +2 -0
  19. tritonparse/tools/load_tensor.py +2 -0
  20. tritonparse/tools/prettify_ndjson.py +2 -0
  21. tritonparse/trace_processor.py +13 -13
  22. {tritonparse-0.3.1.dev20251023071548.dist-info → tritonparse-0.3.1.dev20251025071457.dist-info}/METADATA +1 -1
  23. tritonparse-0.3.1.dev20251025071457.dist-info/RECORD +41 -0
  24. tritonparse-0.3.1.dev20251023071548.dist-info/RECORD +0 -40
  25. {tritonparse-0.3.1.dev20251023071548.dist-info → tritonparse-0.3.1.dev20251025071457.dist-info}/WHEEL +0 -0
  26. {tritonparse-0.3.1.dev20251023071548.dist-info → tritonparse-0.3.1.dev20251025071457.dist-info}/entry_points.txt +0 -0
  27. {tritonparse-0.3.1.dev20251023071548.dist-info → tritonparse-0.3.1.dev20251025071457.dist-info}/licenses/LICENSE +0 -0
  28. {tritonparse-0.3.1.dev20251023071548.dist-info → tritonparse-0.3.1.dev20251025071457.dist-info}/top_level.txt +0 -0
tritonparse/__main__.py CHANGED
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  from .cli import main
2
4
 
3
5
 
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  import os
2
4
  import shutil
3
5
  import tempfile
tritonparse/event_diff.py CHANGED
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  import json
2
4
  from collections import defaultdict
3
5
  from typing import Any, Dict, List, Tuple
@@ -0,0 +1,74 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
3
+ import logging
4
+
5
+ from .sourcemap_utils import load_ir_contents
6
+
7
+
8
+ logger = logging.getLogger("IRAnalysis")
9
+
10
+
11
+ def process_amd_bufferop(ir_content: str, io_keys: list[str]) -> dict[str, int]:
12
+ def make_key(prefix: str) -> str:
13
+ return f"{prefix}_count"
14
+
15
+ io_keys = [(make_key(prefix), prefix) for prefix in io_keys]
16
+ output: dict[str, int] = {}
17
+ for dict_key, _ in io_keys:
18
+ output[dict_key] = 0
19
+ if ir_content:
20
+ for line in ir_content.split("\n"):
21
+ for dict_key, code_key in io_keys:
22
+ if code_key in line:
23
+ output[dict_key] += 1
24
+ return output
25
+
26
+
27
+ def process_amd_ttgir_bufferops(
28
+ key: str,
29
+ file_content: dict[str, str],
30
+ file_path: dict[str, str],
31
+ ) -> dict[str, int]:
32
+ ir_content = load_ir_contents(key, file_content, file_path)
33
+ # TODO: Add atomics
34
+ io_keys = ["tt.load", "tt.store", "amdgpu.buffer_load", "amdgpu.buffer_store"]
35
+ return process_amd_bufferop(ir_content, io_keys)
36
+
37
+
38
+ def process_amd_gcn_bufferops(
39
+ key: str,
40
+ file_content: dict[str, str],
41
+ file_path: dict[str, str],
42
+ ) -> dict[str, int]:
43
+ ir_content = load_ir_contents(key, file_content, file_path)
44
+ # TODO: Add atomics
45
+ io_keys = ["global_load_", "global_store_", "buffer_load_", "buffer_store_"]
46
+ return process_amd_bufferop(ir_content, io_keys)
47
+
48
+
49
+ def _generate_ir_analysis(entry: str):
50
+ payload = entry.setdefault("payload", {})
51
+ file_content = payload.get("file_content", {})
52
+ file_path = payload.get("file_path", {})
53
+
54
+ # Find the IR file keys
55
+ ttgir_key = next((k for k in file_content if k.endswith(".ttgir")), None)
56
+ amdgcn_key = next((k for k in file_content if k.endswith(".amdgcn")), None)
57
+ # Skip if no IR files found
58
+ if not (ttgir_key or amdgcn_key):
59
+ logger.debug("No AMD IR found")
60
+ return {}
61
+ ir_analysis = {}
62
+ if amdgcn_key:
63
+ ttgir_bufferops_info = process_amd_ttgir_bufferops(
64
+ ttgir_key, file_content, file_path
65
+ )
66
+ gcn_bufferops_info = process_amd_gcn_bufferops(
67
+ amdgcn_key, file_content, file_path
68
+ )
69
+ # NDJSON format requires a newline at the end of each line
70
+ if ttgir_bufferops_info:
71
+ ir_analysis["amd_ttgir_bufferops_count"] = ttgir_bufferops_info
72
+ if gcn_bufferops_info:
73
+ ir_analysis["amd_gcn_bufferops_count"] = gcn_bufferops_info
74
+ return {"ir_analysis": ir_analysis}
tritonparse/ir_parser.py CHANGED
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  import logging
2
4
  import os
3
5
  import re
tritonparse/mapper.py CHANGED
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  import logging
2
4
  from collections import defaultdict
3
5
  from typing import Any, Dict, List, Tuple
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  import argparse
2
4
 
3
5
  from tritonparse.reproducer.types import KernelImportMode
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  """
2
4
  Function extractor for reproducer utility functions.
3
5
 
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  from dataclasses import dataclass
2
4
  from typing import Any, Dict, List, Optional, Tuple
3
5
 
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  from pathlib import Path
2
4
  from typing import Optional
3
5
 
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  from abc import ABC
2
4
 
3
5
  from typing import Any, Dict, Protocol
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  from importlib.resources import files as pkg_files
2
4
  from pathlib import Path
3
5
  from typing import List
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  from enum import Enum
2
4
 
3
5
 
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  import importlib
2
4
  import importlib.util
3
5
  import json
@@ -1,3 +1,4 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
1
2
  # We'd like to sperate structured logging module and tritonparse module as much as possible. So, put the shared variables here.
2
3
  import os
3
4
 
@@ -1,5 +1,10 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
3
+ import logging
1
4
  from typing import Any, Dict, List
2
5
 
6
+ logger = logging.getLogger("SourceMapping")
7
+
3
8
 
4
9
  def get_file_extension(filename: str) -> str:
5
10
  """
@@ -70,3 +75,22 @@ def _to_ranges(indices: List[int]) -> List[Dict[str, int]]:
70
75
 
71
76
  ranges.append({"start": start, "end": end})
72
77
  return ranges
78
+
79
+
80
+ def load_ir_contents(
81
+ key: str,
82
+ file_content: dict[str, str],
83
+ file_path: dict[str, str],
84
+ ):
85
+ if not key:
86
+ return {}
87
+ logger.debug(f"Processing {key}")
88
+ ir_content = file_content.get(key, None)
89
+ if not ir_content:
90
+ ir_file_path = file_path.get(key, None)
91
+ if not ir_file_path:
92
+ logger.warning(f"No content found for {key}")
93
+ return {}
94
+ with open(ir_file_path, "r") as f:
95
+ ir_content = f.read()
96
+ return ir_content
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env python3
2
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
3
+
2
4
  """
3
5
  Script to decompress .bin.ndjson files back to regular .ndjson format.
4
6
 
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env python3
2
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
3
+
2
4
  """
3
5
  Format fix script for tritonparse project.
4
6
 
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env python3
2
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
3
+
2
4
  """
3
5
  Simple tensor loading utility for tritonparse saved tensors.
4
6
  Usage:
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env python3
2
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
3
+
2
4
  """
3
5
  Convert an NDJSON file to a prettified JSON file.
4
6
 
@@ -1,3 +1,5 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
1
3
  import gzip
2
4
  import json
3
5
  import logging
@@ -6,6 +8,7 @@ from collections import defaultdict
6
8
  from typing import Any, Dict, List
7
9
 
8
10
  from .event_diff import _generate_launch_diff
11
+ from .ir_analysis import _generate_ir_analysis
9
12
 
10
13
  from .ir_parser import (
11
14
  extract_code_locations,
@@ -13,7 +16,7 @@ from .ir_parser import (
13
16
  extract_ptx_amdgcn_mappings,
14
17
  )
15
18
  from .mapper import create_bidirectional_mapping, create_python_mapping
16
- from .sourcemap_utils import get_file_extension
19
+ from .sourcemap_utils import get_file_extension, load_ir_contents
17
20
 
18
21
  logger = logging.getLogger("SourceMapping")
19
22
 
@@ -84,19 +87,9 @@ def process_ir(
84
87
  file_path: Dict[str, str],
85
88
  other_mappings: List[Any] = None,
86
89
  ):
87
- # Generate source mappings for each IR type
88
- # the key should be the full file name with extension for the IR files
89
- if not key:
90
- return {}
91
- logger.debug(f"Processing {key}")
92
- ir_content = file_content.get(key, None)
90
+ ir_content = load_ir_contents(key, file_content, file_path)
93
91
  if not ir_content:
94
- ir_file_path = file_path.get(key, None)
95
- if not ir_file_path:
96
- logger.warning(f"No content found for {key}")
97
- return {}
98
- with open(ir_file_path, "r") as f:
99
- ir_content = f.read()
92
+ return {}
100
93
  mapping = generate_source_mappings(ir_content, key.split(".")[1], other_mappings)
101
94
  logger.debug(f"Generated source mapping for {key}")
102
95
  return mapping
@@ -307,6 +300,13 @@ def parse_single_file(
307
300
  json.dumps(launch_event, separators=(",", ":")) + "\n"
308
301
  )
309
302
 
303
+ if compilation_event:
304
+ ir_analysis_event = _generate_ir_analysis(compilation_event)
305
+ if ir_analysis_event:
306
+ all_output_lines[output_file].append(
307
+ json.dumps(ir_analysis_event, separators=(",", ":")) + "\n"
308
+ )
309
+
310
310
  if compilation_event and launches_with_indices:
311
311
  sames, diffs, launch_index_map = _generate_launch_diff(
312
312
  launches_with_indices
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tritonparse
3
- Version: 0.3.1.dev20251023071548
3
+ Version: 0.3.1.dev20251025071457
4
4
  Summary: TritonParse: A Compiler Tracer, Visualizer, and mini-Reproducer Generator for Triton Kernels
5
5
  Author-email: Yueming Hao <yhao@meta.com>
6
6
  License-Expression: BSD-3-Clause
@@ -0,0 +1,41 @@
1
+ tritonparse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ tritonparse/__main__.py,sha256=RXbkALBewcb1xlJBnsQl9IaBRUNln7U8NuRZKT8UdIk,117
3
+ tritonparse/cli.py,sha256=w_sCIv1NlcGDzoflsYuTvtQis92_YuZEC51ZlTVsYCU,2517
4
+ tritonparse/common.py,sha256=MJo9bVCgSKkwXpEoUkUczPo_5jOYpJgXLq4UsWYqN3c,13924
5
+ tritonparse/context_manager.py,sha256=OdMn11qbApYL2c9IlbUpcT27r04ZSa4DfvrY2mLA958,2243
6
+ tritonparse/event_diff.py,sha256=USCjfjYr-7Ie-EfZgtCFMZMA1KRzFRDe7yDFy98zYI4,4962
7
+ tritonparse/extract_source_mappings.py,sha256=Z6UxFj2cCE5NCWLQTYPKqUpLfbYhqP8xgCl5mvud9KI,1451
8
+ tritonparse/ir_analysis.py,sha256=YObFsRKkpdjkwL3lIeWRXU6DY13fGVqdh8li4PiCpoQ,2482
9
+ tritonparse/ir_parser.py,sha256=Qtb8kA6IMBtbLbABEGSDFdGQQI_GsPd1iC2GHbEviaI,9379
10
+ tritonparse/mapper.py,sha256=QBCUMHM9pu3x3ahFp0wyXJbmv9TFGVPdkcLULok1E-k,4205
11
+ tritonparse/shared_vars.py,sha256=RifXq55KisHgspYAmGcaCWY6ZHX8iejFHvwIewvcWZE,707
12
+ tritonparse/source_type.py,sha256=nmYEQS8rfkIN9BhNhQbkmEvKnvS-3zAxRGLY4TaZdi8,1676
13
+ tritonparse/sourcemap_utils.py,sha256=uI02n5Sgnlx7Nc15QAX5N6_tZZMips0PyJuo1n3eouY,2654
14
+ tritonparse/structured_logging.py,sha256=L1xkkCx8Jr9YQbM0Kgtf2g6L3aWMkYOEeFFEOSo8Lkk,60306
15
+ tritonparse/tp_logger.py,sha256=vXzY7hMDmVnRBGBhIjFZe3nHZzG5NKKPONGUszJhGgU,242
16
+ tritonparse/trace_processor.py,sha256=cJHagBOSHFpvUKYLxrvtgoFODDZ5CEFkU_xZTKsD9s8,12981
17
+ tritonparse/utils.py,sha256=Jnlptcd79llSDev-_1XyyOnv2izUqv0PEL74A8GF2tc,4565
18
+ tritonparse/reproducer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ tritonparse/reproducer/cli.py,sha256=wk0K8qJhvP9gty2EBMH3WEc3TSFcszvNq3JbfYu_sTw,1577
20
+ tritonparse/reproducer/function_extractor.py,sha256=kQr10JKHy8EvAN7ic4Azjz6TYe-udBW2DVmbQ--c1pc,6643
21
+ tritonparse/reproducer/orchestrator.py,sha256=h55xXEVYtIr33GvwCuvM03bsYc01_yPa5X_B-3w71kE,3237
22
+ tritonparse/reproducer/placeholder_replacer.py,sha256=ARPZAa9A3Fyit_dIclOKe1JzFgUPBFdHvfy3z20x2E8,9607
23
+ tritonparse/reproducer/types.py,sha256=86wql3NaGgpkOzx0gDFb5qexNjKExzhL0uIwGU7grrw,564
24
+ tritonparse/reproducer/utils.py,sha256=yFS1Mg2IhRgW-1UNfqjWH5gRSqc8Wbn5Ykre8L-EWcU,16599
25
+ tritonparse/reproducer/ingestion/ndjson.py,sha256=QX_4XyK_vhSOFyJtfDxQNwzXqVXolrfk4cefzlShFps,7427
26
+ tritonparse/reproducer/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ tritonparse/reproducer/templates/example.py,sha256=jR3c8_d7fAFJYaj1DuUuthnI4Xd-_606bWDRdUPMNyo,785
28
+ tritonparse/reproducer/templates/loader.py,sha256=x14KHXkovOIcXFKii3Jx4XjpEhXqUMqp575qAffi370,1975
29
+ tritonparse/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
+ tritonparse/tools/decompress_bin_ndjson.py,sha256=Gn5foDIlxBN5D5wmcdrEmwvxo3_wRlH8ih2U2Ys3RdM,4199
31
+ tritonparse/tools/disasm.py,sha256=c4HmNNoPPeXPQBQkPVcMaHwDHbHNZNxuqXn4UIIs1Z0,2434
32
+ tritonparse/tools/format_fix.py,sha256=ISalg_N_L7Xktag3mLr-G9T6Opxv793s1WG6A9wUtXk,3922
33
+ tritonparse/tools/load_tensor.py,sha256=7-LbpboKDNJFBLNhiKS3enoqRlVAb55OjPc70PwHXAw,2789
34
+ tritonparse/tools/prettify_ndjson.py,sha256=kR8hmBCv-iJeuzpi2_6CZv9T4_edRQbBOSOPpMm6wrw,11117
35
+ tritonparse/tools/readme.md,sha256=w6PWYfYnRgoPArLjxG9rVrpcLUkoVMGuRlbpF-o0IQM,110
36
+ tritonparse-0.3.1.dev20251025071457.dist-info/licenses/LICENSE,sha256=4ZciugpyN7wcM4L-9pyDh_etvMUeIfBhDTyH1zeZlQM,1515
37
+ tritonparse-0.3.1.dev20251025071457.dist-info/METADATA,sha256=AOVS0JPzUdhi5-59slIrr7oVO0Ofy_8xNQW75pbLj04,8278
38
+ tritonparse-0.3.1.dev20251025071457.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
39
+ tritonparse-0.3.1.dev20251025071457.dist-info/entry_points.txt,sha256=wEXdaieDoRRCCdhEv2p_C68iytnaXU_2pwt5CqjfbWY,56
40
+ tritonparse-0.3.1.dev20251025071457.dist-info/top_level.txt,sha256=ITcTKgp3vf_bXV9vixuQU9IrZa3L1EfDSZwvRzRaoJU,12
41
+ tritonparse-0.3.1.dev20251025071457.dist-info/RECORD,,
@@ -1,40 +0,0 @@
1
- tritonparse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- tritonparse/__main__.py,sha256=wu5N2wk8mvBgyvr2ghmQf4prezAe0_i-p123VVreyYc,62
3
- tritonparse/cli.py,sha256=w_sCIv1NlcGDzoflsYuTvtQis92_YuZEC51ZlTVsYCU,2517
4
- tritonparse/common.py,sha256=MJo9bVCgSKkwXpEoUkUczPo_5jOYpJgXLq4UsWYqN3c,13924
5
- tritonparse/context_manager.py,sha256=R6zKoixi8aXF2yK8pN1EUVPPmldhhXMdEK_PgKZjaX4,2188
6
- tritonparse/event_diff.py,sha256=yOD6uNxLJroatfx2nEGr-erw24ObOrHU9P6V5pzr8do,4907
7
- tritonparse/extract_source_mappings.py,sha256=Z6UxFj2cCE5NCWLQTYPKqUpLfbYhqP8xgCl5mvud9KI,1451
8
- tritonparse/ir_parser.py,sha256=1j1tP9jpUN7wH3e01bKUkUPgTMlNXUdp8LKRCC-WTro,9324
9
- tritonparse/mapper.py,sha256=prrczfi13P7Aa042OrEBsmRF1HW3jDhwxicANgPkWIM,4150
10
- tritonparse/shared_vars.py,sha256=fCAW24mx9nENYoNbTy-tZjiN5-w6oGTO_av-Pw1J1TY,653
11
- tritonparse/source_type.py,sha256=nmYEQS8rfkIN9BhNhQbkmEvKnvS-3zAxRGLY4TaZdi8,1676
12
- tritonparse/sourcemap_utils.py,sha256=qsQmTDuEe9yuUVyxSHRbjTR38gi0hvJEijnPkrJVAV4,2037
13
- tritonparse/structured_logging.py,sha256=L1xkkCx8Jr9YQbM0Kgtf2g6L3aWMkYOEeFFEOSo8Lkk,60306
14
- tritonparse/tp_logger.py,sha256=vXzY7hMDmVnRBGBhIjFZe3nHZzG5NKKPONGUszJhGgU,242
15
- tritonparse/trace_processor.py,sha256=brQBt26jdB6-quJXP5-warp2j31JSjOOFJa5ayiUZ5k,12963
16
- tritonparse/utils.py,sha256=Jnlptcd79llSDev-_1XyyOnv2izUqv0PEL74A8GF2tc,4565
17
- tritonparse/reproducer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- tritonparse/reproducer/cli.py,sha256=MqYuuAP-uAIWWLQxixwyyBHJGSaQdG3xXGaVjERTLX8,1522
19
- tritonparse/reproducer/function_extractor.py,sha256=pB5b52Xlk9-fe-Gs-z_Rn2HkZd1bC9qHTw1JZc_epBM,6588
20
- tritonparse/reproducer/orchestrator.py,sha256=ZGdsiOZg2Bg6o0cqZSCGx_v6mdzR4yZX7S3SVQjZ9-c,3182
21
- tritonparse/reproducer/placeholder_replacer.py,sha256=TvqQIrOubmBHJ_pl0ZvkpP4dIDiMYxUll1q9MIbzZco,9552
22
- tritonparse/reproducer/types.py,sha256=AfVl83zoJZQ58JJoplCcMC51gK-M-OKcafatYEIGgW0,509
23
- tritonparse/reproducer/utils.py,sha256=LHmkM9EEAn9BwNyhHuCEp1tm7omeILbhkAcOmN-iLrk,16544
24
- tritonparse/reproducer/ingestion/ndjson.py,sha256=pEujTl5xXW2E2DEW8ngxXQ8qP9oawb90wBVTWHDs1jk,7372
25
- tritonparse/reproducer/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- tritonparse/reproducer/templates/example.py,sha256=jR3c8_d7fAFJYaj1DuUuthnI4Xd-_606bWDRdUPMNyo,785
27
- tritonparse/reproducer/templates/loader.py,sha256=HqjfThdDVg7q2bYWry78sIaVRkUpkcA8KQDt83YrlVE,1920
28
- tritonparse/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
- tritonparse/tools/decompress_bin_ndjson.py,sha256=kpt7DM_sSA334F1X45xdkP2OR9LuB27Pc50EkGr6CPM,4144
30
- tritonparse/tools/disasm.py,sha256=c4HmNNoPPeXPQBQkPVcMaHwDHbHNZNxuqXn4UIIs1Z0,2434
31
- tritonparse/tools/format_fix.py,sha256=Ol0Sjui8D7OzHwbamAfGnq8V5Y63uwNaFTKSORN5HkQ,3867
32
- tritonparse/tools/load_tensor.py,sha256=94-TiSYlpXJx4MPmGK1ovmZlTt56Q_B3KQeCPaA6Cnw,2734
33
- tritonparse/tools/prettify_ndjson.py,sha256=r2YlHwFDTHgML7KljRmMsHaDg29q8gOQAgyDKWJhxRM,11062
34
- tritonparse/tools/readme.md,sha256=w6PWYfYnRgoPArLjxG9rVrpcLUkoVMGuRlbpF-o0IQM,110
35
- tritonparse-0.3.1.dev20251023071548.dist-info/licenses/LICENSE,sha256=4ZciugpyN7wcM4L-9pyDh_etvMUeIfBhDTyH1zeZlQM,1515
36
- tritonparse-0.3.1.dev20251023071548.dist-info/METADATA,sha256=QCqUUpoXTPPeUN3mhNWN_fsipg9W3a1Pq5GiHln1oRM,8278
37
- tritonparse-0.3.1.dev20251023071548.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
38
- tritonparse-0.3.1.dev20251023071548.dist-info/entry_points.txt,sha256=wEXdaieDoRRCCdhEv2p_C68iytnaXU_2pwt5CqjfbWY,56
39
- tritonparse-0.3.1.dev20251023071548.dist-info/top_level.txt,sha256=ITcTKgp3vf_bXV9vixuQU9IrZa3L1EfDSZwvRzRaoJU,12
40
- tritonparse-0.3.1.dev20251023071548.dist-info/RECORD,,