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
Over the integers, things are a bit better but still very slow:
julia> Z = HomalgRingOfIntegers();
julia> M = HomalgIdentityMatrix(200, Z);
julia> @time M * M;
1.984669 seconds (32.10 M allocations: 614.044 MiB, 33.34% gc time, 2.17% compilation time)
In native GAP, the multiplication takes only about a millisecond:
gap> M := IdentityMat( 200 );;
gap> CallFuncListWithTime(\*, [ M, M ]);;
0.0009120000000000001 Secs.
The text was updated successfully, but these errors were encountered: