tests: Remove unsigned prefix to have the same reference than before

This commit is contained in:
Quentin Bourgerie
2023-02-17 14:08:02 +01:00
parent 52ad40c9cf
commit 4a3c33b60a

View File

@@ -15,7 +15,7 @@ def generate(args):
for p in args.bitwidth:
max_value = (2 ** p) - 1
random_lut = np.random.randint(max_value+1, size=2**p)
print(f"description: unsigned_apply_lookup_table_{p}bits")
print(f"description: apply_lookup_table_{p}bits")
print("program: |")
print(
f" func.func @main(%arg0: !FHE.eint<{p}>) -> !FHE.eint<{p}> {{")