From 7743b5d4f2aab9f567c695385d6572d28e5953c5 Mon Sep 17 00:00:00 2001 From: arhik Date: Sat, 17 Jan 2026 19:55:43 +0000 Subject: [PATCH] Add UInt8 support to julia_to_tile_dtype - Map UInt8 to I8 tile dtype alongside Int8 - Fixes missing UInt8 type support for Tile operations --- src/bytecode/types.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bytecode/types.jl b/src/bytecode/types.jl index 1b51769..d2c5c56 100644 --- a/src/bytecode/types.jl +++ b/src/bytecode/types.jl @@ -179,7 +179,7 @@ end function julia_to_tile_dtype!(table::TypeTable, ::Type{T}) where T if T === Bool I1(table) - elseif T === Int8 + elseif T === Int8 || T === UInt8 I8(table) elseif T === Int16 || T === UInt16 I16(table)