We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Converting to Env is extremely expensive due to how Nim's object conversion check is implemented.
Env
Currently we perform one conversion per environment access, which gets pretty expensive (try compiling stash/performance with --objChecks:on).
stash/performance
--objChecks:on
The text was updated successfully, but these errors were encountered:
I think Nim has plenty of knobs and levers here and I don't really want to turn the checks off at all -- it just seems unnecessary and out of scope.
That said, we could just push object checks on during the initial whelping and then push them off around the continuation legs.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Converting to
Env
is extremely expensive due to how Nim's object conversion check is implemented.Currently we perform one conversion per environment access, which gets pretty expensive (try compiling
stash/performance
with--objChecks:on
).The text was updated successfully, but these errors were encountered: