From a762f4b2cdf97182af8479abd8677c156c1209a6 Mon Sep 17 00:00:00 2001 From: Leon Oostrum Date: Thu, 28 Nov 2024 16:21:04 +0100 Subject: [PATCH 1/2] Add support for float16 to HIP backend --- kernel_tuner/backends/hip.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel_tuner/backends/hip.py b/kernel_tuner/backends/hip.py index fb8a9f947..7d3adb90a 100644 --- a/kernel_tuner/backends/hip.py +++ b/kernel_tuner/backends/hip.py @@ -19,6 +19,7 @@ "bool": ctypes.c_bool, "int8": ctypes.c_int8, "int16": ctypes.c_int16, + "float16": ctypes.c_int16, "int32": ctypes.c_int32, "int64": ctypes.c_int64, "uint8": ctypes.c_uint8, From ca37d5102ac792f215fad329fc25f36acc63dbc0 Mon Sep 17 00:00:00 2001 From: Leon Oostrum Date: Thu, 28 Nov 2024 16:22:56 +0100 Subject: [PATCH 2/2] Add Leon to authors --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 13d1cb647..b09198bec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ authors = [ "Willem-Jan Palenstijn ", "Bram Veenboer ", "Richard Schoonhoven ", + "Leon Oostrum