rocm-scribe 1.0.0__tar.gz
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.
- rocm_scribe-1.0.0/LICENSE +190 -0
- rocm_scribe-1.0.0/PKG-INFO +506 -0
- rocm_scribe-1.0.0/README.md +468 -0
- rocm_scribe-1.0.0/cuda_scribe/__init__.py +95 -0
- rocm_scribe-1.0.0/cuda_scribe/amd_bridge.py +867 -0
- rocm_scribe-1.0.0/cuda_scribe/backends/__init__.py +1 -0
- rocm_scribe-1.0.0/cuda_scribe/backends/amd_kernel_optimizer.py +1079 -0
- rocm_scribe-1.0.0/cuda_scribe/backends/amd_wavefront_optimizer.py +341 -0
- rocm_scribe-1.0.0/cuda_scribe/backends/hip_backend.py +552 -0
- rocm_scribe-1.0.0/cuda_scribe/backends/metal_backend.py +223 -0
- rocm_scribe-1.0.0/cuda_scribe/backends/pallas_backend.py +228 -0
- rocm_scribe-1.0.0/cuda_scribe/backends/sycl_backend.py +158 -0
- rocm_scribe-1.0.0/cuda_scribe/backends/wgsl_backend.py +193 -0
- rocm_scribe-1.0.0/cuda_scribe/bridge_ir.py +650 -0
- rocm_scribe-1.0.0/cuda_scribe/cli.py +150 -0
- rocm_scribe-1.0.0/cuda_scribe/hipify.py +864 -0
- rocm_scribe-1.0.0/pyproject.toml +63 -0
- rocm_scribe-1.0.0/rocm_scribe.egg-info/PKG-INFO +506 -0
- rocm_scribe-1.0.0/rocm_scribe.egg-info/SOURCES.txt +24 -0
- rocm_scribe-1.0.0/rocm_scribe.egg-info/dependency_links.txt +1 -0
- rocm_scribe-1.0.0/rocm_scribe.egg-info/entry_points.txt +3 -0
- rocm_scribe-1.0.0/rocm_scribe.egg-info/requires.txt +15 -0
- rocm_scribe-1.0.0/rocm_scribe.egg-info/top_level.txt +1 -0
- rocm_scribe-1.0.0/setup.cfg +4 -0
- rocm_scribe-1.0.0/tests/test_amd_bridge.py +1079 -0
- rocm_scribe-1.0.0/tests/test_bridge_v2.py +398 -0
|
@@ -0,0 +1,190 @@
|
|
|
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,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but not
|
|
32
|
+
limited to compiled object code, generated documentation, and
|
|
33
|
+
conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding any notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2026 The AI Cowboys LLC
|
|
179
|
+
|
|
180
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
+
you may not use this file except in compliance with the License.
|
|
182
|
+
You may obtain a copy of the License at
|
|
183
|
+
|
|
184
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
+
|
|
186
|
+
Unless required by applicable law or agreed to in writing, software
|
|
187
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
+
See the License for the specific language governing permissions and
|
|
190
|
+
limitations under the License.
|
|
@@ -0,0 +1,506 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rocm-scribe
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Automated CUDA-to-ROCm GPU kernel translation -- break free from CUDA lock-in with semantic BridgeIR
|
|
5
|
+
Author-email: The AI Cowboys <mike@theaicowboys.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/iaintheardofu/rocm-scribe
|
|
8
|
+
Project-URL: Documentation, https://github.com/iaintheardofu/rocm-scribe/tree/main/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/iaintheardofu/rocm-scribe
|
|
10
|
+
Project-URL: Issues, https://github.com/iaintheardofu/rocm-scribe/issues
|
|
11
|
+
Keywords: cuda,amd,rocm,hip,triton,gpu,translation,kernel
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Software Development :: Compilers
|
|
21
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
22
|
+
Classifier: Topic :: System :: Hardware
|
|
23
|
+
Requires-Python: >=3.10
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
License-File: LICENSE
|
|
26
|
+
Provides-Extra: triton
|
|
27
|
+
Requires-Dist: triton>=3.0; extra == "triton"
|
|
28
|
+
Provides-Extra: torch
|
|
29
|
+
Requires-Dist: torch>=2.0; extra == "torch"
|
|
30
|
+
Provides-Extra: all
|
|
31
|
+
Requires-Dist: triton>=3.0; extra == "all"
|
|
32
|
+
Requires-Dist: torch>=2.0; extra == "all"
|
|
33
|
+
Provides-Extra: dev
|
|
34
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
35
|
+
Requires-Dist: pytest-cov>=4.0; extra == "dev"
|
|
36
|
+
Requires-Dist: ruff>=0.4; extra == "dev"
|
|
37
|
+
Dynamic: license-file
|
|
38
|
+
|
|
39
|
+
<p align="center">
|
|
40
|
+
<h1 align="center">ROCm Scribe</h1>
|
|
41
|
+
<p align="center">
|
|
42
|
+
<strong>Automated CUDA-to-ROCm translation. Break free from vendor lock-in.</strong>
|
|
43
|
+
</p>
|
|
44
|
+
<p align="center">
|
|
45
|
+
<a href="#quick-start">Quick Start</a> |
|
|
46
|
+
<a href="#how-it-works">How It Works</a> |
|
|
47
|
+
<a href="#cli">CLI</a> |
|
|
48
|
+
<a href="#amd-hardware-optimization">AMD Optimization</a> |
|
|
49
|
+
<a href="#benchmarks">Benchmarks</a> |
|
|
50
|
+
<a href="#pro">Pro</a>
|
|
51
|
+
</p>
|
|
52
|
+
</p>
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
ROCm Scribe translates CUDA GPU kernels to run on AMD hardware. Not string replacement -- **semantic translation** through BridgeIR, a universal intermediate representation that captures computation structure, memory hierarchy, synchronization topology, and reduction patterns before generating target-specific code.
|
|
57
|
+
|
|
58
|
+
Two production paths:
|
|
59
|
+
|
|
60
|
+
1. **CUDA to Triton** -- Same kernel runs on NVIDIA *and* AMD. Zero code changes between vendors.
|
|
61
|
+
2. **CUDA to HIP C++** -- Direct source-level translation with 316 API mappings covering the full ROCm stack.
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pip install rocm-scribe
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Why This Exists
|
|
68
|
+
|
|
69
|
+
Migrating from CUDA to AMD costs **$72K--$205K per major model** when done manually. AMD's own GEAK tool achieves **54--63% translation accuracy**. Academic one-shot methods fail on quantization kernels **100% of the time**.
|
|
70
|
+
|
|
71
|
+
ROCm Scribe exists because GPU compute should be a choice, not a lock-in. If you have CUDA code and AMD hardware, this tool gets you there.
|
|
72
|
+
|
|
73
|
+
## Quick Start
|
|
74
|
+
|
|
75
|
+
### Python API
|
|
76
|
+
|
|
77
|
+
```python
|
|
78
|
+
from cuda_scribe import AMDBridge, hipify
|
|
79
|
+
|
|
80
|
+
# Translate a CUDA kernel to AMD-ready Triton
|
|
81
|
+
bridge = AMDBridge()
|
|
82
|
+
result = bridge.translate(cuda_source)
|
|
83
|
+
print(result.triton_source) # Runs on AMD + NVIDIA
|
|
84
|
+
print(result.hip_source) # HIP C++ for AMD native
|
|
85
|
+
print(result.occupancy) # Wavefront occupancy on MI300X
|
|
86
|
+
print(result.roofline) # Compute vs memory bound analysis
|
|
87
|
+
|
|
88
|
+
# Or HIPIFY an entire CUDA program (API-level translation)
|
|
89
|
+
from cuda_scribe import hipify, HipifyConfig
|
|
90
|
+
config = HipifyConfig(target_arch="gfx942") # MI300X
|
|
91
|
+
result = hipify(cuda_source, config=config)
|
|
92
|
+
print(result.source) # Complete HIP C++ translation
|
|
93
|
+
print(result.diagnostics) # Translation warnings/issues
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### BridgeIR -- Universal Kernel IR
|
|
97
|
+
|
|
98
|
+
```python
|
|
99
|
+
from cuda_scribe import CUDALifter, translate_universal
|
|
100
|
+
|
|
101
|
+
# Lift CUDA to hardware-independent IR
|
|
102
|
+
lifter = CUDALifter()
|
|
103
|
+
kernel = lifter.lift(cuda_source)
|
|
104
|
+
|
|
105
|
+
# Then lower to ANY target
|
|
106
|
+
targets = translate_universal(kernel, targets=["triton", "hip", "metal", "sycl"])
|
|
107
|
+
print(targets["triton"]) # AMD + NVIDIA via Triton
|
|
108
|
+
print(targets["hip"]) # AMD native HIP C++
|
|
109
|
+
print(targets["metal"]) # Apple Silicon Metal shaders
|
|
110
|
+
print(targets["sycl"]) # Intel oneAPI SYCL
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
### AMD Hardware Analysis
|
|
114
|
+
|
|
115
|
+
```python
|
|
116
|
+
from cuda_scribe import compute_occupancy, roofline_analysis, select_mfma_instruction
|
|
117
|
+
|
|
118
|
+
# Wavefront occupancy (VGPR-based, AMD-specific)
|
|
119
|
+
occ = compute_occupancy(vgprs_per_thread=48, arch="cdna3")
|
|
120
|
+
# {'wavefronts_per_simd': 10, 'occupancy_pct': 100.0}
|
|
121
|
+
|
|
122
|
+
# Roofline model
|
|
123
|
+
analysis = roofline_analysis(flops=1e12, bytes_moved=1e10, arch="cdna3")
|
|
124
|
+
# {'bound': 'compute', 'achieved_pct': 76.5, 'peak_tflops': 1307}
|
|
125
|
+
|
|
126
|
+
# MFMA instruction selection (AMD Matrix Fused Multiply-Add)
|
|
127
|
+
instr = select_mfma_instruction(dtype="fp16", m=32, n=32)
|
|
128
|
+
# 'v_mfma_f32_32x32x8_f16'
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
## CLI
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
# Analyze kernel complexity before translation
|
|
135
|
+
rocm-scribe analyze kernel.cu
|
|
136
|
+
|
|
137
|
+
# Translate CUDA to Triton (runs on AMD + NVIDIA)
|
|
138
|
+
rocm-scribe translate kernel.cu --backend amd
|
|
139
|
+
|
|
140
|
+
# HIPIFY a CUDA source file with full API translation
|
|
141
|
+
rocm-scribe hipify kernel.cu --arch gfx942
|
|
142
|
+
|
|
143
|
+
# Get AMD hardware optimization recommendations
|
|
144
|
+
rocm-scribe optimize kernel.cu --target mi300x
|
|
145
|
+
|
|
146
|
+
# Show capabilities and supported hardware
|
|
147
|
+
rocm-scribe info
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
## How It Works
|
|
151
|
+
|
|
152
|
+
### The Problem with Existing Tools
|
|
153
|
+
|
|
154
|
+
| Tool | Approach | Limitation |
|
|
155
|
+
|---|---|---|
|
|
156
|
+
| `hipify-clang` | String-level API replacement | Doesn't translate kernels, only API calls |
|
|
157
|
+
| GEAK | LLM reflexion loop | 54--63% accuracy, no verification |
|
|
158
|
+
| Academic methods | One-shot generation | 100% failure on quantization kernels |
|
|
159
|
+
| Manual porting | Engineer rewrites | $72K--$205K per model, weeks of work |
|
|
160
|
+
|
|
161
|
+
### ROCm Scribe's Approach
|
|
162
|
+
|
|
163
|
+
ROCm Scribe doesn't do string replacement. It lifts CUDA into **BridgeIR**, a block-level intermediate representation that captures *what the kernel computes* rather than *how it's expressed in CUDA*. Then it lowers to any target with hardware-specific optimizations.
|
|
164
|
+
|
|
165
|
+
```
|
|
166
|
+
CUDA Source (.cu)
|
|
167
|
+
|
|
|
168
|
+
v
|
|
169
|
+
[Semantic Analysis] -- Parse AST, extract thread model, memory patterns,
|
|
170
|
+
| synchronization topology, reduction structure
|
|
171
|
+
v
|
|
172
|
+
[BridgeIR] -- Hardware-independent kernel representation
|
|
173
|
+
| Block-level ops on typed tensor tiles
|
|
174
|
+
| Explicit memory hierarchy (register -> shared -> global)
|
|
175
|
+
| Parametric parallelism (symbolic grid/block dims)
|
|
176
|
+
|
|
|
177
|
+
+---> [Triton Backend] -- Portable: runs on AMD + NVIDIA
|
|
178
|
+
| Wavefront-aware block sizes (64 vs 32)
|
|
179
|
+
| AMD-specific autotuning configs
|
|
180
|
+
|
|
|
181
|
+
+---> [HIP Backend] -- AMD native C++
|
|
182
|
+
| 316 API mappings (cuBLAS->rocBLAS, cuDNN->MIOpen, etc.)
|
|
183
|
+
| MFMA instruction targeting
|
|
184
|
+
| Wavefront reduction (6 steps vs 5)
|
|
185
|
+
|
|
|
186
|
+
+---> [Metal Backend] -- Apple Silicon (M1/M2/M3/M4)
|
|
187
|
+
+---> [Pallas Backend] -- Google TPU / JAX
|
|
188
|
+
+---> [SYCL Backend] -- Intel GPUs / oneAPI
|
|
189
|
+
+---> [WGSL Backend] -- WebGPU (browser)
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
### 7-Stage Translation Pipeline
|
|
193
|
+
|
|
194
|
+
| Stage | What It Does | Edition |
|
|
195
|
+
|---|---|---|
|
|
196
|
+
| 0. Semantic Analysis | Parses CUDA AST, extracts thread model, memory access patterns, sync topology | Open Source |
|
|
197
|
+
| 1. Pattern Matching | Matches against 47 verified CUDA-to-Triton translation templates | Open Source |
|
|
198
|
+
| 2. LLM Translation | Multi-model semantic-enriched translation (Claude + GPT ensemble) | Pro |
|
|
199
|
+
| 3. Static Verification | Triton IR compilation, memory bounds checking, mask completeness | Open Source |
|
|
200
|
+
| 4. Dynamic Verification | Cross-backend ULP numeric comparison with 50+ run stochastic variance | Pro |
|
|
201
|
+
| 5. Performance Optimization | Roofline analysis, wavefront-aware autotuning, bandwidth maximization | Open Source |
|
|
202
|
+
| 6. Evolutionary Repair | Population-based fix generation with tournament selection | Pro |
|
|
203
|
+
| 7. Pattern Learning | Successful translations feed pattern library, failures feed antibodies | Pro |
|
|
204
|
+
|
|
205
|
+
The open-source edition gives you stages 0, 1, 3, and 5 -- enough to translate standard kernels and optimize for AMD hardware. **ROCm Scribe Pro** adds LLM-assisted translation, cross-backend verification, evolutionary repair for the hard cases, and continuous learning. [Contact us](mailto:mike@theaicowboys.com) for enterprise licensing.
|
|
206
|
+
|
|
207
|
+
## HIPIFY -- Complete API Translation
|
|
208
|
+
|
|
209
|
+
316 CUDA-to-HIP API mappings covering the full ROCm stack:
|
|
210
|
+
|
|
211
|
+
| Library | CUDA | ROCm/HIP | Mappings |
|
|
212
|
+
|---|---|---|---|
|
|
213
|
+
| **Runtime** | `cudaMalloc`, `cudaMemcpy`, `cudaDeviceSynchronize`, ... | `hipMalloc`, `hipMemcpy`, `hipDeviceSynchronize`, ... | 96 |
|
|
214
|
+
| **Types** | `cudaError_t`, `cudaStream_t`, `dim3`, ... | `hipError_t`, `hipStream_t`, `dim3`, ... | 45 |
|
|
215
|
+
| **BLAS** | cuBLAS | rocBLAS | 50 |
|
|
216
|
+
| **DNN** | cuDNN | MIOpen | 20 |
|
|
217
|
+
| **FFT** | cuFFT | rocFFT | 15+ |
|
|
218
|
+
| **Sparse** | cuSPARSE | rocSPARSE | 15+ |
|
|
219
|
+
| **RNG** | cuRAND | rocRAND | 15+ |
|
|
220
|
+
| **Collectives** | NCCL | RCCL | 11 |
|
|
221
|
+
| **Sorting/Scan** | CUB | hipCUB | 15+ |
|
|
222
|
+
| **Thrust** | Thrust | rocThrust | (drop-in) |
|
|
223
|
+
|
|
224
|
+
```python
|
|
225
|
+
from cuda_scribe import hipify, HipifyConfig, get_translation_coverage
|
|
226
|
+
|
|
227
|
+
# Check current coverage
|
|
228
|
+
coverage = get_translation_coverage()
|
|
229
|
+
print(f"Total API mappings: {coverage['total_mappings']}")
|
|
230
|
+
|
|
231
|
+
# Translate with diagnostics
|
|
232
|
+
config = HipifyConfig(target_arch="gfx942")
|
|
233
|
+
result = hipify(cuda_source, config=config)
|
|
234
|
+
|
|
235
|
+
for diag in result.diagnostics:
|
|
236
|
+
print(f"[{diag.level.value}] Line {diag.line}: {diag.message}")
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
## AMD Hardware Optimization
|
|
240
|
+
|
|
241
|
+
ROCm Scribe doesn't just translate -- it **optimizes for AMD's architecture**. Every translation is wavefront-aware, MFMA-targeted, and LDS-optimized.
|
|
242
|
+
|
|
243
|
+
### Wavefront-Aware Translation
|
|
244
|
+
|
|
245
|
+
AMD GPUs use 64-wide wavefronts (CDNA) vs NVIDIA's 32-wide warps. This affects everything:
|
|
246
|
+
|
|
247
|
+
- **Reduction steps**: 6 iterations (log2 64) vs 5 (log2 32)
|
|
248
|
+
- **Shared memory access**: Different bank conflict patterns
|
|
249
|
+
- **Ballot operations**: 64-bit masks vs 32-bit
|
|
250
|
+
- **Block size selection**: Multiples of 64 for full occupancy
|
|
251
|
+
|
|
252
|
+
```python
|
|
253
|
+
from cuda_scribe import convert_warp_to_wavefront
|
|
254
|
+
|
|
255
|
+
# Automatically adjust warp-level code for AMD wavefronts
|
|
256
|
+
amd_source = convert_warp_to_wavefront(cuda_source)
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
### MFMA Instruction Targeting
|
|
260
|
+
|
|
261
|
+
AMD's Matrix Fused Multiply-Add instructions (equivalent of NVIDIA Tensor Cores):
|
|
262
|
+
|
|
263
|
+
| Instruction | Input | Output | Throughput/CU |
|
|
264
|
+
|---|---|---|---|
|
|
265
|
+
| `v_mfma_f32_32x32x8_f16` | FP16 | FP32 | 512 ops/cycle |
|
|
266
|
+
| `v_mfma_f32_16x16x16_f16` | FP16 | FP32 | 512 ops/cycle |
|
|
267
|
+
| `v_mfma_f32_32x32x16_bf16` | BF16 | FP32 | 512 ops/cycle |
|
|
268
|
+
| `v_mfma_f32_32x32x16_fp8` | FP8 | FP32 | 1024 ops/cycle |
|
|
269
|
+
| `v_mfma_i32_32x32x16_i8` | INT8 | INT32 | 1024 ops/cycle |
|
|
270
|
+
|
|
271
|
+
```python
|
|
272
|
+
from cuda_scribe import select_mfma_instruction, MFMA_INSTRUCTIONS
|
|
273
|
+
|
|
274
|
+
# Select optimal MFMA for your workload
|
|
275
|
+
instr = select_mfma_instruction(dtype="fp16", m=32, n=32)
|
|
276
|
+
|
|
277
|
+
# Full instruction reference
|
|
278
|
+
for name, spec in MFMA_INSTRUCTIONS.items():
|
|
279
|
+
print(f"{name}: {spec}")
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
### Occupancy Calculator
|
|
283
|
+
|
|
284
|
+
AMD occupancy is VGPR-limited. ROCm Scribe calculates wavefront occupancy per-SIMD:
|
|
285
|
+
|
|
286
|
+
| VGPRs/Wavefront | Max Wavefronts/SIMD | Occupancy |
|
|
287
|
+
|---|---|---|
|
|
288
|
+
| 48 | 10 | 100% |
|
|
289
|
+
| 96 | 5 | 50% |
|
|
290
|
+
| 128 | 4 | 40% |
|
|
291
|
+
| 256 | 2 | 20% |
|
|
292
|
+
| 512 | 1 | 10% |
|
|
293
|
+
|
|
294
|
+
```python
|
|
295
|
+
from cuda_scribe import compute_occupancy
|
|
296
|
+
|
|
297
|
+
occ = compute_occupancy(vgprs_per_thread=48, arch="cdna3")
|
|
298
|
+
print(f"Wavefronts/SIMD: {occ['wavefronts_per_simd']}")
|
|
299
|
+
print(f"Occupancy: {occ['occupancy_pct']}%")
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
### LDS Bank Conflict Detection
|
|
303
|
+
|
|
304
|
+
```python
|
|
305
|
+
from cuda_scribe import apply_lds_bank_conflict_padding
|
|
306
|
+
|
|
307
|
+
# Get padding recommendation for conflict-free LDS access
|
|
308
|
+
padded_size = apply_lds_bank_conflict_padding(array_size=256, element_bytes=4)
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
### Pre-Built AMD Triton Templates
|
|
312
|
+
|
|
313
|
+
5 production-ready Triton kernel templates optimized for AMD CDNA architecture:
|
|
314
|
+
|
|
315
|
+
```python
|
|
316
|
+
from cuda_scribe import (
|
|
317
|
+
generate_triton_gemm_amd, # Matrix multiplication
|
|
318
|
+
generate_triton_flash_attention_amd, # FlashAttention-2
|
|
319
|
+
generate_triton_softmax_amd, # Numerically stable softmax
|
|
320
|
+
generate_triton_layernorm_amd, # Fused layer normalization
|
|
321
|
+
generate_triton_rope_amd, # Rotary positional embeddings
|
|
322
|
+
)
|
|
323
|
+
```
|
|
324
|
+
|
|
325
|
+
## Supported AMD Hardware
|
|
326
|
+
|
|
327
|
+
| Architecture | GPU | GFX Target | Wavefront | LDS/CU | HBM BW | Peak FP16 |
|
|
328
|
+
|---|---|---|---|---|---|---|
|
|
329
|
+
| **CDNA3** | MI300X | gfx942 | 64 | 64KB | 5.3 TB/s | 1,307 TFLOPS |
|
|
330
|
+
| **CDNA2** | MI250X | gfx90a | 64 | 64KB | 3.2 TB/s | 383 TFLOPS |
|
|
331
|
+
| **CDNA1** | MI100 | gfx908 | 64 | 64KB | 1.2 TB/s | 185 TFLOPS |
|
|
332
|
+
| **RDNA3** | RX 7900 XTX | gfx1100 | 32/64 | 128KB | 960 GB/s | 123 TFLOPS |
|
|
333
|
+
| **RDNA2** | RX 6900 XT | gfx1030 | 32/64 | 128KB | 512 GB/s | 46 TFLOPS |
|
|
334
|
+
|
|
335
|
+
### Recommended Compiler Flags
|
|
336
|
+
|
|
337
|
+
**MI300X (gfx942)**
|
|
338
|
+
```bash
|
|
339
|
+
hipcc --offload-arch=gfx942 -O3 -ffast-math \
|
|
340
|
+
-mllvm -amdgpu-early-inline-all=true \
|
|
341
|
+
-mllvm -amdgpu-function-calls=false \
|
|
342
|
+
kernel.hip.cpp -o kernel
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
**MI250X (gfx90a)**
|
|
346
|
+
```bash
|
|
347
|
+
hipcc --offload-arch=gfx90a -O3 -ffast-math kernel.hip.cpp -o kernel
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
## Multi-Target Backends
|
|
351
|
+
|
|
352
|
+
BridgeIR generates optimized code for 6 targets beyond AMD:
|
|
353
|
+
|
|
354
|
+
| Backend | Target Hardware | Use Case |
|
|
355
|
+
|---|---|---|
|
|
356
|
+
| **Triton** | NVIDIA + AMD GPUs | Production inference/training (portable) |
|
|
357
|
+
| **HIP** | AMD GPUs (native) | Maximum AMD performance |
|
|
358
|
+
| **Metal** | Apple M1/M2/M3/M4 | macOS/iOS GPU compute |
|
|
359
|
+
| **Pallas** | Google TPU + JAX | Cloud TPU workloads |
|
|
360
|
+
| **SYCL** | Intel GPUs + oneAPI | Intel datacenter GPUs |
|
|
361
|
+
| **WGSL** | WebGPU (browsers) | Client-side GPU compute |
|
|
362
|
+
|
|
363
|
+
```python
|
|
364
|
+
from cuda_scribe import translate_universal, CUDALifter
|
|
365
|
+
|
|
366
|
+
lifter = CUDALifter()
|
|
367
|
+
kernel = lifter.lift(cuda_source)
|
|
368
|
+
results = translate_universal(kernel, targets=["triton", "hip", "metal", "pallas", "sycl", "wgsl"])
|
|
369
|
+
|
|
370
|
+
for target, code in results.items():
|
|
371
|
+
print(f"--- {target} ---")
|
|
372
|
+
print(code[:200])
|
|
373
|
+
```
|
|
374
|
+
|
|
375
|
+
## Benchmarks
|
|
376
|
+
|
|
377
|
+
### Translation Accuracy (L40S GPU, verified July 2026)
|
|
378
|
+
|
|
379
|
+
| Kernel | Throughput | Roofline % | Max Numeric Error |
|
|
380
|
+
|---|---|---|---|
|
|
381
|
+
| VectorAdd 16M elements | 633.7 GB/s | 73.3% | **0.0** (exact) |
|
|
382
|
+
| Softmax 8K x 2K | 709.0 GB/s | 82.1% | 7.45e-9 |
|
|
383
|
+
| LayerNorm 4K x 1K | 1.30x vs PyTorch | -- | 9.54e-7 |
|
|
384
|
+
| GEMM 2K x 2K FP16 | 132.3 TFLOPS | 36.5% | **0.0** (exact) |
|
|
385
|
+
| GEMM 4K x 4K FP16 | 153.5 TFLOPS | 42.4% | **0.0** (exact) |
|
|
386
|
+
|
|
387
|
+
### Metal GPU Verification (Apple M2 Max)
|
|
388
|
+
|
|
389
|
+
| Kernel | Throughput | Max Error |
|
|
390
|
+
|---|---|---|
|
|
391
|
+
| VectorAdd 1M | 255.8 GB/s | **0.0** (exact) |
|
|
392
|
+
| RoPE [2,128,8,64] | 38.4 us | 3.16e-5 (265 ULPs -- normal for cross-platform trig) |
|
|
393
|
+
|
|
394
|
+
### Test Suite
|
|
395
|
+
|
|
396
|
+
- **134 tests** -- AMD Bridge (hipify, wavefront optimizer, kernel optimizer, MFMA)
|
|
397
|
+
- **37 tests** -- BridgeIR multi-target translation
|
|
398
|
+
- **48 tests** -- Core translation pipeline
|
|
399
|
+
- **4 tests** -- Metal GPU on-device verification
|
|
400
|
+
- **219 total** -- All passing
|
|
401
|
+
|
|
402
|
+
## Comparison: ROCm Scribe vs Alternatives
|
|
403
|
+
|
|
404
|
+
| Feature | hipify-clang | GEAK | Academic | **ROCm Scribe** |
|
|
405
|
+
|---|---|---|---|---|
|
|
406
|
+
| API mapping (CUDA to HIP) | Yes | No | No | **Yes (316 mappings)** |
|
|
407
|
+
| Kernel translation | No | Yes | Yes | **Yes (BridgeIR)** |
|
|
408
|
+
| Translation accuracy | N/A | 54--63% | Varies | **Verified correct** |
|
|
409
|
+
| Wavefront optimization | No | No | No | **Yes (64-wide)** |
|
|
410
|
+
| MFMA instruction targeting | No | No | No | **Yes (10 instructions)** |
|
|
411
|
+
| Occupancy analysis | No | No | No | **Yes (VGPR-based)** |
|
|
412
|
+
| Triton output (portable) | No | Yes | Yes | **Yes** |
|
|
413
|
+
| Multi-target (6 backends) | No | No | No | **Yes** |
|
|
414
|
+
| Numeric verification | No | No | No | **Pro** |
|
|
415
|
+
| Quantization kernels | No | No | 0% success | **Pro** |
|
|
416
|
+
| Evolutionary repair | No | No | No | **Pro** |
|
|
417
|
+
| Cross-platform | Linux only | Linux only | Linux only | **Linux, macOS, Windows** |
|
|
418
|
+
|
|
419
|
+
## Examples
|
|
420
|
+
|
|
421
|
+
The `examples/` directory contains 5 complete CUDA kernels:
|
|
422
|
+
|
|
423
|
+
| File | Pattern | Difficulty |
|
|
424
|
+
|---|---|---|
|
|
425
|
+
| `vector_add.cu` | Elementwise map | Trivial |
|
|
426
|
+
| `reduction.cu` | Parallel reduction with shared memory | Medium |
|
|
427
|
+
| `softmax.cu` | Warp shuffle + numerically stable softmax | Hard |
|
|
428
|
+
| `fused_layernorm.cu` | Fused normalization | Medium |
|
|
429
|
+
| `transpose.cu` | Shared memory tiled transpose | Medium |
|
|
430
|
+
|
|
431
|
+
```bash
|
|
432
|
+
rocm-scribe translate examples/vector_add.cu --backend amd
|
|
433
|
+
rocm-scribe translate examples/softmax.cu --backend both
|
|
434
|
+
```
|
|
435
|
+
|
|
436
|
+
## Platform Support
|
|
437
|
+
|
|
438
|
+
ROCm Scribe runs on **Linux, macOS, and Windows**. The translation pipeline is pure Python with no OS-specific dependencies — translate CUDA kernels on any workstation and deploy to AMD hardware.
|
|
439
|
+
|
|
440
|
+
| Platform | Translation | On-Device Compilation | Notes |
|
|
441
|
+
|---|---|---|---|
|
|
442
|
+
| **Linux** | Yes | Yes (ROCm + hipcc) | Full pipeline including AMD GPU execution |
|
|
443
|
+
| **macOS** | Yes | Metal backend only | Translate + verify on Apple Silicon |
|
|
444
|
+
| **Windows** | Yes | Yes (ROCm via WSL2) | Native Python, GPU via WSL2 |
|
|
445
|
+
|
|
446
|
+
```bash
|
|
447
|
+
# Works the same on all platforms
|
|
448
|
+
pip install rocm-scribe
|
|
449
|
+
rocm-scribe translate kernel.cu --backend amd
|
|
450
|
+
```
|
|
451
|
+
|
|
452
|
+
## Installation
|
|
453
|
+
|
|
454
|
+
### From PyPI
|
|
455
|
+
```bash
|
|
456
|
+
pip install rocm-scribe
|
|
457
|
+
```
|
|
458
|
+
|
|
459
|
+
### From Source
|
|
460
|
+
```bash
|
|
461
|
+
git clone https://github.com/iaintheardofu/rocm-scribe.git
|
|
462
|
+
cd rocm-scribe
|
|
463
|
+
pip install -e ".[dev]"
|
|
464
|
+
pytest
|
|
465
|
+
```
|
|
466
|
+
|
|
467
|
+
### Optional Dependencies
|
|
468
|
+
```bash
|
|
469
|
+
pip install rocm-scribe[triton] # + Triton for GPU execution
|
|
470
|
+
pip install rocm-scribe[torch] # + PyTorch
|
|
471
|
+
pip install rocm-scribe[all] # Everything
|
|
472
|
+
```
|
|
473
|
+
|
|
474
|
+
## Pro
|
|
475
|
+
|
|
476
|
+
**ROCm Scribe Pro** includes the full 7-stage pipeline for production CUDA migration:
|
|
477
|
+
|
|
478
|
+
- **LLM-Assisted Translation** -- Multi-model ensemble with semantic context injection
|
|
479
|
+
- **Dynamic Verification** -- Cross-backend ULP-based numeric comparison (50+ runs)
|
|
480
|
+
- **Evolutionary Repair** -- Population-based fix generation for kernels that fail initial translation
|
|
481
|
+
- **Pattern Learning** -- The system improves with every translation (pattern library + failure antibodies)
|
|
482
|
+
- **Quantization Patterns** -- W4A16, W8A8, FP8, SmoothQuant kernel translation
|
|
483
|
+
- **Enterprise Support** -- SLA-backed migration consulting, private pattern libraries, fleet tracking
|
|
484
|
+
|
|
485
|
+
**Contact:** [mike@theaicowboys.com](mailto:mike@theaicowboys.com)
|
|
486
|
+
|
|
487
|
+
## Contributing
|
|
488
|
+
|
|
489
|
+
We welcome contributions. See [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
490
|
+
|
|
491
|
+
High-impact areas:
|
|
492
|
+
- CUDA pattern templates (expand Stage 1 pattern library)
|
|
493
|
+
- HIP API mappings (increase HIPIFY coverage)
|
|
494
|
+
- Backend improvements (Metal, SYCL, WGSL, Pallas)
|
|
495
|
+
- Complex CUDA test kernels
|
|
496
|
+
- AMD hardware benchmark results
|
|
497
|
+
|
|
498
|
+
## License
|
|
499
|
+
|
|
500
|
+
Apache License 2.0 -- See [LICENSE](LICENSE).
|
|
501
|
+
|
|
502
|
+
## About
|
|
503
|
+
|
|
504
|
+
Built by [The AI Cowboys](https://theaicowboys.com) -- San Antonio, TX.
|
|
505
|
+
|
|
506
|
+
ROCm Scribe exists because migrating from CUDA shouldn't cost $200K per model. We believe in an open GPU ecosystem where hardware is a choice, not a prison. AMD's ROCm platform is the path to open AI compute, and this tool helps you get there.
|