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
On my system, at least for the deep-100 use case, the precompiled executable from github (Version v0.1.0) is a lot slower than if I were to compile the executable myself.
This is most likely because the action builds a static binary, linked against musl, whereas by default, you will get a binary that links dynamically against glibc. In particular, this means it uses another memory allocator, which might not be as efficient. Likely, the way to fix this is by replacing the action (since it doesn't support linking against glibc).
On my system, at least for the deep-100 use case, the precompiled executable from github (Version v0.1.0) is a lot slower than if I were to compile the executable myself.
This needs some investigation.
The text was updated successfully, but these errors were encountered: