From cf19280c546629a9927aca6e1d1ce1149482c82b Mon Sep 17 00:00:00 2001 From: dzaima Date: Thu, 3 Oct 2024 20:32:52 +0300 Subject: [PATCH] fix reliance on signed wrapping in replicate --- src/singeli/src/replicate.singeli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/singeli/src/replicate.singeli b/src/singeli/src/replicate.singeli index 37e83441..9cbca051 100644 --- a/src/singeli/src/replicate.singeli +++ b/src/singeli/src/replicate.singeli @@ -2,7 +2,7 @@ include './base' include './mask' include './spaced' -def ind_types = tup{i8, i16, i32} +def ind_types = tup{u8, u16, u32} def dat_types = tup{...ind_types, u64} # Indices and Replicate using plus- or max-scan