From f80de69f86f0c36d61258601ce5cfef445c328b6 Mon Sep 17 00:00:00 2001 From: AlexisRalli Date: Mon, 18 Mar 2024 10:23:02 -0400 Subject: [PATCH] removed signature type from GF2 multiplicaiton --- symmer/operators/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symmer/operators/utils.py b/symmer/operators/utils.py index 9404dde..dc1b563 100644 --- a/symmer/operators/utils.py +++ b/symmer/operators/utils.py @@ -60,7 +60,7 @@ def numba_binary_matmal_GF2(A: np.array, B: np.array) -> np.array: C[i, j] = acc return C -@nb.njit('(bool_[:,::1],bool_[:,::1])', fastmath=True, cache=True) +@nb.njit(fastmath=True, cache=True) def numba_dot_matmal_GF2(A, B): """ Matrix multiplication mod2, i.e. (A@B)%2. Note this function expects boolean input!