-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
llvmcall deprecation warnings #139
Comments
Thanks for reporting that. I'll switch to pointers.
I'm not excited about this as well. ATM I just try to keep |
UPD: Now there is one more file where These Either compilers become smart enough to produce such code by themselves or I decide I do not care enough and delete all |
To be more precise using Groebner, AbstractAlgebra
k = GF(2^30+3)
C = [
Groebner.Examples.HIV2(k=k),
Groebner.Examples.Goodwin_with_weights(k=k),
Groebner.Examples.yang1(k=k),
Groebner.Examples.Cholera(k=k),
Groebner.Examples.bayes148(k=k),
Groebner.Examples.mayr42(k=k)
];
@time for c in C groebner(c); end No llvmcalls : 98.660280 seconds (121.74 M allocations: 12.032 GiB, 4.05% gc time) With llvmcalls : 92.756787 seconds (121.74 M allocations: 12.032 GiB, 4.25% gc time) This is Julia Version 1.12.0-DEV.1076 |
|
Also, IMO, using assembly at all, let alone so much of it, is a red flag/strong code smell for such a high-level package.
The text was updated successfully, but these errors were encountered: