Skip to content

Commit e003d1c

Browse files
author
Milo Lurati
committed
examples/hip/vector_add.py runs successfully on AMD
1 parent 48db638 commit e003d1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel_tuner/backends/hip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def ready_argument_list(self, arguments):
129129
logging.debug("HipFunction ready_argument_list called")
130130
ctype_args = []
131131
data_ctypes = None
132-
for arg in enumerate(arguments):
132+
for arg in arguments:
133133
dtype_str = str(arg.dtype)
134134
if isinstance(arg, np.ndarray):
135135
if dtype_str in dtype_map.keys():

0 commit comments

Comments
 (0)