tritonparse 0.3.2.dev20251210071601__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.
- tritonparse/__init__.py +0 -0
- tritonparse/__main__.py +7 -0
- tritonparse/cli.py +110 -0
- tritonparse/common.py +409 -0
- tritonparse/context_manager.py +64 -0
- tritonparse/event_diff.py +122 -0
- tritonparse/extract_source_mappings.py +49 -0
- tritonparse/info/__init__.py +30 -0
- tritonparse/info/cli.py +121 -0
- tritonparse/info/kernel_query.py +209 -0
- tritonparse/info/parse_helper.py +70 -0
- tritonparse/ir_analysis.py +427 -0
- tritonparse/ir_parser.py +365 -0
- tritonparse/mapper.py +102 -0
- tritonparse/reproducer/__init__.py +0 -0
- tritonparse/reproducer/ast_analyzer.py +636 -0
- tritonparse/reproducer/cli.py +72 -0
- tritonparse/reproducer/consolidated_result.py +52 -0
- tritonparse/reproducer/function_extractor.py +228 -0
- tritonparse/reproducer/import_info.py +25 -0
- tritonparse/reproducer/import_parser.py +178 -0
- tritonparse/reproducer/import_resolver.py +151 -0
- tritonparse/reproducer/ingestion/ndjson.py +237 -0
- tritonparse/reproducer/multi_file_analyzer.py +824 -0
- tritonparse/reproducer/orchestrator.py +110 -0
- tritonparse/reproducer/placeholder_replacer.py +335 -0
- tritonparse/reproducer/templates/__init__.py +0 -0
- tritonparse/reproducer/templates/example.py +38 -0
- tritonparse/reproducer/templates/loader.py +59 -0
- tritonparse/reproducer/templates/tritonbench.py +106 -0
- tritonparse/reproducer/templates/utils.py +48 -0
- tritonparse/reproducer/tests/__init__.py +0 -0
- tritonparse/reproducer/tests/artifacts/__init__.py +5 -0
- tritonparse/reproducer/tests/artifacts/triton_fused_kernel.py +65 -0
- tritonparse/reproducer/tests/artifacts/triton_preprocess.py +16 -0
- tritonparse/reproducer/tests/artifacts/triton_utils.py +14 -0
- tritonparse/reproducer/tests/test_import_parser.py +164 -0
- tritonparse/reproducer/tests/test_import_resolver.py +88 -0
- tritonparse/reproducer/tests/test_multi_file_analyzer.py +118 -0
- tritonparse/reproducer/types.py +20 -0
- tritonparse/reproducer/utils.py +580 -0
- tritonparse/shared_vars.py +12 -0
- tritonparse/source_type.py +56 -0
- tritonparse/sourcemap_utils.py +96 -0
- tritonparse/structured_logging.py +1634 -0
- tritonparse/tools/__init__.py +0 -0
- tritonparse/tools/decompress_bin_ndjson.py +120 -0
- tritonparse/tools/disasm.py +81 -0
- tritonparse/tools/extract_irs.py +244 -0
- tritonparse/tools/format_fix.py +151 -0
- tritonparse/tools/load_tensor.py +76 -0
- tritonparse/tools/prettify_ndjson.py +334 -0
- tritonparse/tools/readme.md +37 -0
- tritonparse/tp_logger.py +9 -0
- tritonparse/trace_processor.py +367 -0
- tritonparse/utils.py +155 -0
- tritonparse-0.3.2.dev20251210071601.dist-info/METADATA +195 -0
- tritonparse-0.3.2.dev20251210071601.dist-info/RECORD +62 -0
- tritonparse-0.3.2.dev20251210071601.dist-info/WHEEL +5 -0
- tritonparse-0.3.2.dev20251210071601.dist-info/entry_points.txt +2 -0
- tritonparse-0.3.2.dev20251210071601.dist-info/licenses/LICENSE +29 -0
- tritonparse-0.3.2.dev20251210071601.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tritonparse
|
|
3
|
+
Version: 0.3.2.dev20251210071601
|
|
4
|
+
Summary: TritonParse: A Compiler Tracer, Visualizer, and mini-Reproducer Generator for Triton Kernels
|
|
5
|
+
Author-email: Yueming Hao <yhao@meta.com>
|
|
6
|
+
License-Expression: BSD-3-Clause
|
|
7
|
+
Project-URL: Homepage, https://github.com/meta-pytorch/tritonparse
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Provides-Extra: triton
|
|
12
|
+
Requires-Dist: triton>3.3.1; extra == "triton"
|
|
13
|
+
Provides-Extra: pytorch-triton
|
|
14
|
+
Requires-Dist: pytorch-triton>=3.4.0; extra == "pytorch-triton"
|
|
15
|
+
Provides-Extra: test
|
|
16
|
+
Requires-Dist: coverage>=7.0.0; extra == "test"
|
|
17
|
+
Dynamic: license-file
|
|
18
|
+
|
|
19
|
+
# TritonParse
|
|
20
|
+
|
|
21
|
+
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
22
|
+
[](https://meta-pytorch.org/tritonparse/)
|
|
23
|
+
|
|
24
|
+
**A comprehensive visualization and analysis tool for Triton kernel compilation and launch** — helping developers analyze, debug, and understand Triton kernel compilation processes.
|
|
25
|
+
|
|
26
|
+
🌐 **[Try it online →](https://meta-pytorch.org/tritonparse/?json_url=https://meta-pytorch.org/tritonparse/dedicated_log_triton_trace_findhao__mapped.ndjson.gz)**
|
|
27
|
+
|
|
28
|
+
## ✨ Key Features
|
|
29
|
+
|
|
30
|
+
### 🔍 Visualization & Analysis
|
|
31
|
+
- **🚀 Launch Difference Analysis** - Detect and visualize kernel launch parameter variations
|
|
32
|
+
- **📊 IR Code View** - Side-by-side IR viewing with synchronized highlighting and line mapping
|
|
33
|
+
- **🔄 File Diff View** - Compare kernels across different trace files side-by-side
|
|
34
|
+
- **📝 Multi-format IR Support** - View TTGIR, TTIR, LLIR, PTX, and AMDGCN
|
|
35
|
+
- **🎯 Interactive Code Views** - Click-to-highlight corresponding lines across IR stages
|
|
36
|
+
|
|
37
|
+
### 🔧 Reproducer & Debugging Tools
|
|
38
|
+
- **🔄 Standalone Script Generation** - Extract any kernel into a self-contained Python script
|
|
39
|
+
- **💾 Tensor Data Reconstruction** - Preserve actual tensor data or use statistical approximation
|
|
40
|
+
- **🎯 Custom Templates** - Flexible reproducer templates for different workflows
|
|
41
|
+
- **🐛 Bug Isolation** - Share reproducible test cases for debugging and collaboration
|
|
42
|
+
|
|
43
|
+
### 📊 Structured Logging & Analysis
|
|
44
|
+
- **📝 Compilation & Launch Tracing** - Capture detailed events with source mapping
|
|
45
|
+
- **🔍 Stack Trace Integration** - Full Python stack traces for debugging
|
|
46
|
+
- **📈 Metadata Extraction** - Comprehensive kernel statistics
|
|
47
|
+
|
|
48
|
+
### 🛠️ Developer Tools
|
|
49
|
+
- **🌐 Browser-based Interface** - No installation required, works in your browser
|
|
50
|
+
- **🔒 Privacy-first** - All processing happens locally, no data uploaded
|
|
51
|
+
|
|
52
|
+
## 🚀 Quick Start
|
|
53
|
+
|
|
54
|
+
### 1. Installation
|
|
55
|
+
|
|
56
|
+
**Four options to install:**
|
|
57
|
+
```bash
|
|
58
|
+
# install nightly version
|
|
59
|
+
pip install -U --pre tritonparse
|
|
60
|
+
# install stable version
|
|
61
|
+
pip install tritonparse
|
|
62
|
+
# install from source
|
|
63
|
+
git clone https://github.com/meta-pytorch/tritonparse.git
|
|
64
|
+
cd tritonparse
|
|
65
|
+
pip install -e .
|
|
66
|
+
# pip install the latest version from github
|
|
67
|
+
pip install git+https://github.com/meta-pytorch/tritonparse.git
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
**Prerequisites:** Python ≥ 3.10, Triton ≥ 3.4.0, GPU required (NVIDIA/AMD)
|
|
71
|
+
|
|
72
|
+
TritonParse relies on new features in Triton. If you're using nightly PyTorch, Triton is already included. Otherwise, install the latest Triton:
|
|
73
|
+
```bash
|
|
74
|
+
pip install triton
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
### 2. Generate Traces
|
|
78
|
+
|
|
79
|
+
```python
|
|
80
|
+
import tritonparse.structured_logging
|
|
81
|
+
import tritonparse.utils
|
|
82
|
+
|
|
83
|
+
# Initialize logging
|
|
84
|
+
tritonparse.structured_logging.init("./logs/", enable_trace_launch=True)
|
|
85
|
+
|
|
86
|
+
# Your Triton/PyTorch code here
|
|
87
|
+
# ... your kernels ...
|
|
88
|
+
|
|
89
|
+
# Parse and generate trace files
|
|
90
|
+
tritonparse.utils.unified_parse("./logs/", out="./parsed_output")
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
<details>
|
|
94
|
+
<summary>📝 Example output (click to expand)</summary>
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
================================================================================
|
|
98
|
+
📁 TRITONPARSE PARSING RESULTS
|
|
99
|
+
================================================================================
|
|
100
|
+
📂 Parsed files directory: /scratch/findhao/tritonparse/tests/parsed_output
|
|
101
|
+
📊 Total files generated: 2
|
|
102
|
+
|
|
103
|
+
📄 Generated files:
|
|
104
|
+
1. 📝 dedicated_log_triton_trace_findhao__mapped.ndjson.gz (7.2KB)
|
|
105
|
+
2. 📝 log_file_list.json (181B)
|
|
106
|
+
================================================================================
|
|
107
|
+
✅ Parsing completed successfully!
|
|
108
|
+
================================================================================
|
|
109
|
+
```
|
|
110
|
+
</details>
|
|
111
|
+
|
|
112
|
+
### 3. Visualize Results
|
|
113
|
+
|
|
114
|
+
**Visit [https://meta-pytorch.org/tritonparse/](https://meta-pytorch.org/tritonparse/?json_url=https://meta-pytorch.org/tritonparse/dedicated_log_triton_trace_findhao__mapped.ndjson.gz)** and open your local trace files (.ndjson.gz format).
|
|
115
|
+
|
|
116
|
+
> **🔒 Privacy Note**: Your trace files are processed entirely in your browser - nothing is uploaded to any server!
|
|
117
|
+
|
|
118
|
+
### 4. Generate Reproducers (Optional)
|
|
119
|
+
|
|
120
|
+
Extract any kernel into a standalone, executable Python script for debugging or testing:
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
# Generate reproducer for the first launch event
|
|
124
|
+
# (--line is 0-based: line 0 is compilation event, line 1 is first launch event)
|
|
125
|
+
tritonparseoss reproduce ./parsed_output/trace.ndjson.gz --line 1 --out-dir repro_output
|
|
126
|
+
|
|
127
|
+
# Run the generated reproducer
|
|
128
|
+
cd repro_output/<kernel_name>/
|
|
129
|
+
python repro_*.py
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
**Python API:**
|
|
133
|
+
```python
|
|
134
|
+
from tritonparse.reproducer.orchestrator import reproduce
|
|
135
|
+
|
|
136
|
+
result = reproduce(
|
|
137
|
+
input_path="./parsed_output/trace.ndjson.gz",
|
|
138
|
+
line_index=0, # 0-based index (first event is 0)
|
|
139
|
+
out_dir="repro_output"
|
|
140
|
+
)
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
<details>
|
|
144
|
+
<summary>🎯 Common Reproducer Use Cases (click to expand)</summary>
|
|
145
|
+
|
|
146
|
+
- **🐛 Bug Isolation**: Extract a failing kernel into a minimal standalone script
|
|
147
|
+
- **⚡ Performance Testing**: Benchmark specific kernels without running the full application
|
|
148
|
+
- **🤝 Team Collaboration**: Share reproducible test cases with colleagues or in bug reports
|
|
149
|
+
- **📊 Regression Testing**: Compare kernel behavior and performance across different versions
|
|
150
|
+
- **🔍 Deep Debugging**: Modify and experiment with kernel parameters in isolation
|
|
151
|
+
|
|
152
|
+
</details>
|
|
153
|
+
|
|
154
|
+
## 📚 Complete Documentation
|
|
155
|
+
|
|
156
|
+
| 📖 Guide | Description |
|
|
157
|
+
|----------|-------------|
|
|
158
|
+
| **[🏠 Wiki Home](https://github.com/meta-pytorch/tritonparse/wiki)** | Complete documentation and quick navigation |
|
|
159
|
+
| **[📦 Installation](https://github.com/meta-pytorch/tritonparse/wiki/01.-Installation)** | Setup guide for all scenarios |
|
|
160
|
+
| **[📋 Usage Guide](https://github.com/meta-pytorch/tritonparse/wiki/02.-Usage-Guide)** | Complete workflow, reproducer generation, and examples |
|
|
161
|
+
| **[🌐 Web Interface](https://github.com/meta-pytorch/tritonparse/wiki/03.-Web-Interface-Guide)** | Master the visualization interface |
|
|
162
|
+
| **[🔧 Developer Guide](https://github.com/meta-pytorch/tritonparse/wiki/04.-Developer-Guide)** | Contributing and architecture overview |
|
|
163
|
+
| **[📝 Code Formatting](https://github.com/meta-pytorch/tritonparse/wiki/05.-Code-Formatting)** | Formatting standards and tools |
|
|
164
|
+
| **[❓ FAQ](https://github.com/meta-pytorch/tritonparse/wiki/06.-FAQ)** | Quick answers and troubleshooting |
|
|
165
|
+
|
|
166
|
+
## 📊 Understanding Triton Compilation
|
|
167
|
+
|
|
168
|
+
TritonParse visualizes the complete Triton compilation pipeline:
|
|
169
|
+
|
|
170
|
+
**Python Source** → **TTIR** → **TTGIR** → **LLIR** → **PTX/AMDGCN**
|
|
171
|
+
|
|
172
|
+
Each stage can be inspected and compared to understand optimization transformations.
|
|
173
|
+
|
|
174
|
+
## 🤝 Contributing
|
|
175
|
+
|
|
176
|
+
We welcome contributions! Please see our **[Developer Guide](https://github.com/meta-pytorch/tritonparse/wiki/04.-Developer-Guide)** for:
|
|
177
|
+
- Development setup and prerequisites
|
|
178
|
+
- Code formatting standards (**[Formatting Guide](https://github.com/meta-pytorch/tritonparse/wiki/05.-Code-Formatting)**)
|
|
179
|
+
- Pull request and code review process
|
|
180
|
+
- Testing guidelines
|
|
181
|
+
- Architecture overview
|
|
182
|
+
|
|
183
|
+
## 📞 Support & Community
|
|
184
|
+
|
|
185
|
+
- **🐛 Report Issues**: [GitHub Issues](https://github.com/meta-pytorch/tritonparse/issues)
|
|
186
|
+
- **💬 Discussions**: [GitHub Discussions](https://github.com/meta-pytorch/tritonparse/discussions)
|
|
187
|
+
- **📚 Documentation**: [TritonParse Wiki](https://github.com/meta-pytorch/tritonparse/wiki)
|
|
188
|
+
|
|
189
|
+
## 📄 License
|
|
190
|
+
|
|
191
|
+
This project is licensed under the BSD-3 License - see the [LICENSE](LICENSE) file for details.
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
**✨ Ready to get started?** Visit our **[Installation Guide](https://github.com/meta-pytorch/tritonparse/wiki/01.-Installation)** or try the **[online tool](https://meta-pytorch.org/tritonparse/)** directly!
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
tritonparse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
tritonparse/__main__.py,sha256=RXbkALBewcb1xlJBnsQl9IaBRUNln7U8NuRZKT8UdIk,117
|
|
3
|
+
tritonparse/cli.py,sha256=xh5T4Mq0w93BG-A_87T_-FdLXv6ku4UDQU3RzmpxJgg,3577
|
|
4
|
+
tritonparse/common.py,sha256=IXPeC68qmBG6ssDQNqBNFRGdUtJZ1V8jlEHXY5frEpw,13923
|
|
5
|
+
tritonparse/context_manager.py,sha256=jKIVsgTjVQEbJXcXB99pB0OsHf1-w5sECwm5WN9LVKU,2242
|
|
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=-BbBZwpRqpB4s_P044g7ZuwP_73g55P1uoi2n9oEC0Y,16634
|
|
9
|
+
tritonparse/ir_parser.py,sha256=JQ7hsevmhFGmtZ3CoXi4utcomAycBQTT-KFjSva2K8U,15565
|
|
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=mP3B23dk4vZAPrhBokRP_YXTj0Rjb8Rh8b-w_W5JSak,64053
|
|
15
|
+
tritonparse/tp_logger.py,sha256=vXzY7hMDmVnRBGBhIjFZe3nHZzG5NKKPONGUszJhGgU,242
|
|
16
|
+
tritonparse/trace_processor.py,sha256=gCPYiWJEaxaQMzwYmv8uJZav0gIJGxl12E6m8Cr7uvI,14367
|
|
17
|
+
tritonparse/utils.py,sha256=Jnlptcd79llSDev-_1XyyOnv2izUqv0PEL74A8GF2tc,4565
|
|
18
|
+
tritonparse/info/__init__.py,sha256=NsQpDxge4-ezfTeol1j-bMV8SpjlpW8hHNLI7G2T0FY,756
|
|
19
|
+
tritonparse/info/cli.py,sha256=SVnEo7iX2Luu4EZR3dS3a7zxPvAoTezzwZnXpGahNUQ,4240
|
|
20
|
+
tritonparse/info/kernel_query.py,sha256=4Zr2Y8p0z1IHnxLm72aj5_OHdCYkwAPsB_59oNWP77M,6124
|
|
21
|
+
tritonparse/info/parse_helper.py,sha256=Kmk67PwdD3_TdyJoMSajdDnNJ3igH9usvRU0vY1aSj0,2323
|
|
22
|
+
tritonparse/reproducer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
tritonparse/reproducer/ast_analyzer.py,sha256=4S1cN8AXYBMh8FjkvZoTrOO_KIeJPQ_dhy13OQY1Vio,24131
|
|
24
|
+
tritonparse/reproducer/cli.py,sha256=CRysJGDttucKTuxzUtgWvxVXU7UBD64KQHP_8l2CjvQ,2365
|
|
25
|
+
tritonparse/reproducer/consolidated_result.py,sha256=c0CFx2YyIsO4bJZsLRSQ_y1QwpZl_PoiS4eH4_a79bk,1383
|
|
26
|
+
tritonparse/reproducer/function_extractor.py,sha256=lBmIHPBPyBJd4UU4RafCEjlGzC2vgq8mOWda7Tt7oOA,6865
|
|
27
|
+
tritonparse/reproducer/import_info.py,sha256=XoZSzIUSt54C5Ayi8bzqy9XepFmIHTEKO6q9zBUkvcg,840
|
|
28
|
+
tritonparse/reproducer/import_parser.py,sha256=eHNAFkluefWcOnMId2DHidBzTex5vHEKtKjmLUPXNOA,5896
|
|
29
|
+
tritonparse/reproducer/import_resolver.py,sha256=nlNknv0WBeGKNJJ-Cr0OROmJEObolx-v6cUkETK5kzQ,5223
|
|
30
|
+
tritonparse/reproducer/multi_file_analyzer.py,sha256=STEh6UpSc4sKsvVbGO3y7RyNyhF_KlqRTjG-eo4APZU,30189
|
|
31
|
+
tritonparse/reproducer/orchestrator.py,sha256=A8RAZKrxtvm5lBymI_ExgbT94wWvhEpvT2XmK__5TZw,4449
|
|
32
|
+
tritonparse/reproducer/placeholder_replacer.py,sha256=VR4vsVVCBZnfJx5YMTwGd0UBQUeY6jN12nYolnjXmdk,13526
|
|
33
|
+
tritonparse/reproducer/types.py,sha256=86wql3NaGgpkOzx0gDFb5qexNjKExzhL0uIwGU7grrw,564
|
|
34
|
+
tritonparse/reproducer/utils.py,sha256=xkFIwAJOLxXLtKTOyVKiYR0ZKBDlHzeVijscz1dVETM,20446
|
|
35
|
+
tritonparse/reproducer/ingestion/ndjson.py,sha256=7amSwpbtG-od1-pW18Nm9AiaFc3Etd0-UETXwiYCmgw,7443
|
|
36
|
+
tritonparse/reproducer/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
tritonparse/reproducer/templates/example.py,sha256=e1ux6LpE3L6qf2Oxf-F50spBRbtRbfbHcQJbhz2Xt04,882
|
|
38
|
+
tritonparse/reproducer/templates/loader.py,sha256=x14KHXkovOIcXFKii3Jx4XjpEhXqUMqp575qAffi370,1975
|
|
39
|
+
tritonparse/reproducer/templates/tritonbench.py,sha256=J6AkJtnWTA9XBInFIy7Dr-LD-mIviQcW4Wqq_x9an3A,2928
|
|
40
|
+
tritonparse/reproducer/templates/utils.py,sha256=1Sczd4SQPmZPZLYTXgRc_brZq6LUDLFj5XNfgcljWYQ,1232
|
|
41
|
+
tritonparse/reproducer/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
tritonparse/reproducer/tests/test_import_parser.py,sha256=WGOC5xlc9GagsJvgoXh8rcIBEAM2URDTRT3igBq30Mc,6015
|
|
43
|
+
tritonparse/reproducer/tests/test_import_resolver.py,sha256=rL0EWghqRtGP5fktCDnmTERVj1Lm7r2Al9pt46-sSKI,2983
|
|
44
|
+
tritonparse/reproducer/tests/test_multi_file_analyzer.py,sha256=HhOoViZo49pPngongtSp2z70caFu_u9qqq7ymzZu2mA,4681
|
|
45
|
+
tritonparse/reproducer/tests/artifacts/__init__.py,sha256=1GSd2uwSOqwtd-gOnJ9YD43LjaNANG9uwSGH3NWuTwo,144
|
|
46
|
+
tritonparse/reproducer/tests/artifacts/triton_fused_kernel.py,sha256=F5lcCM9Yfl5VwVbTS86nJck-1hstYqtPEoUb1TCRBPo,1644
|
|
47
|
+
tritonparse/reproducer/tests/artifacts/triton_preprocess.py,sha256=DXcH51cGInc4j7jttOGDsl2M6TWFB93dI_49Pn2OTZY,336
|
|
48
|
+
tritonparse/reproducer/tests/artifacts/triton_utils.py,sha256=5_pZ-8AwHZW-MA5BHD6WzUodYCeXousdjHnj-v802Wg,211
|
|
49
|
+
tritonparse/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
+
tritonparse/tools/decompress_bin_ndjson.py,sha256=Gn5foDIlxBN5D5wmcdrEmwvxo3_wRlH8ih2U2Ys3RdM,4199
|
|
51
|
+
tritonparse/tools/disasm.py,sha256=c4HmNNoPPeXPQBQkPVcMaHwDHbHNZNxuqXn4UIIs1Z0,2434
|
|
52
|
+
tritonparse/tools/extract_irs.py,sha256=ByZMX0lOhpjmrpx23HVmASWZG5ow2bvqgpojElVFsmg,8052
|
|
53
|
+
tritonparse/tools/format_fix.py,sha256=ISalg_N_L7Xktag3mLr-G9T6Opxv793s1WG6A9wUtXk,3922
|
|
54
|
+
tritonparse/tools/load_tensor.py,sha256=7-LbpboKDNJFBLNhiKS3enoqRlVAb55OjPc70PwHXAw,2789
|
|
55
|
+
tritonparse/tools/prettify_ndjson.py,sha256=3R2VNU__kgm5qZxkVa_fnZqBdEpkd4-GH12Lv7UG_P0,11651
|
|
56
|
+
tritonparse/tools/readme.md,sha256=opFMUsu9igcn8COUSt_-JbNwEkbsmCQkdkuShjlqm_0,1112
|
|
57
|
+
tritonparse-0.3.2.dev20251210071601.dist-info/licenses/LICENSE,sha256=4ZciugpyN7wcM4L-9pyDh_etvMUeIfBhDTyH1zeZlQM,1515
|
|
58
|
+
tritonparse-0.3.2.dev20251210071601.dist-info/METADATA,sha256=-XkIeIG0Lqeh5m8PZY1dSaH3Rvs96eEmUlRheLVBysQ,8366
|
|
59
|
+
tritonparse-0.3.2.dev20251210071601.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
60
|
+
tritonparse-0.3.2.dev20251210071601.dist-info/entry_points.txt,sha256=wEXdaieDoRRCCdhEv2p_C68iytnaXU_2pwt5CqjfbWY,56
|
|
61
|
+
tritonparse-0.3.2.dev20251210071601.dist-info/top_level.txt,sha256=ITcTKgp3vf_bXV9vixuQU9IrZa3L1EfDSZwvRzRaoJU,12
|
|
62
|
+
tritonparse-0.3.2.dev20251210071601.dist-info/RECORD,,
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019, pytorch
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
17
|
+
contributors may be used to endorse or promote products derived from
|
|
18
|
+
this software without specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tritonparse
|