Skip to content

Commit e4d3d56

Browse files
committed
revert change for int32_t
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent bef565b commit e4d3d56

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

benchmarks/triton_kernels_benchmark/benchmark_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def format_of(ty):
132132
"long": "l",
133133
"int8_t": "b",
134134
"int16_t": "h",
135-
"int32_t": "l",
135+
"int32_t": "i",
136136
"int64_t": "L",
137137
"uint8_t": "B",
138138
"uint16_t": "H",

third_party/amd/backend/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def format_of(ty):
219219
"long": "l",
220220
"int8_t": "b",
221221
"int16_t": "h",
222-
"int32_t": "l",
222+
"int32_t": "i",
223223
"int64_t": "L",
224224
"uint8_t": "B",
225225
"uint16_t": "H",

third_party/intel/backend/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def format_of(ty):
217217
"long": "l",
218218
"int8_t": "b",
219219
"int16_t": "h",
220-
"int32_t": "l",
220+
"int32_t": "i",
221221
"int64_t": "L",
222222
"uint8_t": "B",
223223
"uint16_t": "H",

third_party/nvidia/backend/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def format_of(ty):
140140
"long": "l",
141141
"int8_t": "b",
142142
"int16_t": "h",
143-
"int32_t": "l",
143+
"int32_t": "i",
144144
"int64_t": "L",
145145
"uint8_t": "B",
146146
"uint16_t": "H",

0 commit comments

Comments
 (0)