You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider making N-D GF(p^m) arrays actually (N + 1)-D arrays over GF(p) under the hood. This would require intercepting indexing calls. This would prevent the continual int_to_poly() and poly_to_int() calls in the arithmetic functions, which I believe take the most time.
Intercepting broadcasting routines will probably be needed as well.
The text was updated successfully, but these errors were encountered:
Consider making N-D
GF(p^m)
arrays actually (N + 1)-D arrays overGF(p)
under the hood. This would require intercepting indexing calls. This would prevent the continualint_to_poly()
andpoly_to_int()
calls in the arithmetic functions, which I believe take the most time.Intercepting broadcasting routines will probably be needed as well.
The text was updated successfully, but these errors were encountered: