Skip to content

Commit

Permalink
removed signature type from GF2 multiplicaiton
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisRalli committed Mar 18, 2024
1 parent 60c6a32 commit f80de69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symmer/operators/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down

0 comments on commit f80de69

Please sign in to comment.