From 47b4aef5dbdd735d7ca90ba6f42cb40f7143ee47 Mon Sep 17 00:00:00 2001 From: Philipp Zabel Date: Wed, 21 Aug 2024 12:27:18 +0200 Subject: [PATCH] teflon/tests: Enable int8 tests Enable signed 8-bit convolution tests. Reviewed-by: Tomeu Vizoso Signed-off-by: Philipp Zabel Part-of: --- src/gallium/targets/teflon/test_teflon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/targets/teflon/test_teflon.cpp b/src/gallium/targets/teflon/test_teflon.cpp index f9f9ebe1a34..7a8fad06a60 100644 --- a/src/gallium/targets/teflon/test_teflon.cpp +++ b/src/gallium/targets/teflon/test_teflon.cpp @@ -23,7 +23,7 @@ #define MODEL_TOLERANCE 8 #define QUANT_TOLERANCE 2 -std::vector is_signed{false}; /* TODO: Support INT8? */ +std::vector is_signed{false, true}; std::vector padding_same{false, true}; std::vector stride{1, 2}; std::vector output_channels{1, 32, 120, 128, 160, 256};