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
I decided to try out hinting the compiler to inline the package's hash functions by using @pragma('vm:prefer-inline'), and it appears to have yielded a pretty substantial improvement in performance, at least in a Dart AOT build (VM build appears unaffected).
Would you be open to a PR?
The text was updated successfully, but these errors were encountered:
Would the @pragma('vm:prefer-inline') hint only inline code in the callee? I guess yes but I did not find any official documentation about this particular hint online.
Hello again,
I decided to try out hinting the compiler to inline the package's hash functions by using
@pragma('vm:prefer-inline')
, and it appears to have yielded a pretty substantial improvement in performance, at least in a Dart AOT build (VM build appears unaffected).Would you be open to a PR?
The text was updated successfully, but these errors were encountered: