From a6a3c1935cc9eba9a5b1e04b4b5428a1aeeaeac1 Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Mon, 25 Dec 2023 10:35:49 +0000 Subject: [PATCH] fix #994: support vectors with >= 1024 elements --- ir/type.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/type.cpp b/ir/type.cpp index 1ded46b26..3da35fdad 100644 --- a/ir/type.cpp +++ b/ir/type.cpp @@ -17,7 +17,7 @@ using namespace std; static constexpr unsigned var_type_bits = 3; static constexpr unsigned var_bw_bits = 11; -static constexpr unsigned var_vector_elements = 10; +static constexpr unsigned var_vector_elements = 16; namespace IR {