From 976e57689f1ab569b6139ae191920ba2a5c9c4a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20=27birdy=27=20Danjou?= Date: Wed, 10 Jan 2024 19:25:07 +0100 Subject: [PATCH] feat() add not benchmark --- fhevm/benchmarks_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fhevm/benchmarks_test.go b/fhevm/benchmarks_test.go index 3dc1aca..367c11d 100644 --- a/fhevm/benchmarks_test.go +++ b/fhevm/benchmarks_test.go @@ -61,6 +61,8 @@ func benchTests(t *testing.T, name string, fn operation) { } func TestBenchmarks(t *testing.T) { + benchTests(t, "not", func(fheUintType FheUintType) { FheNot(t, fheUintType, false) }) + benchTests(t, "and", func(fheUintType FheUintType) { FheBitAnd(t, fheUintType, false) }) benchTests(t, "eq", func(fheUintType FheUintType) { FheEq(t, fheUintType, false) })