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
Let me preface this as this project is awesome and I quite enjoyed reading through code. I'm reading cause I'm intrested in SIMD-ifying my YAML parsing crate.
But I got few questions about the implementation details, or link me to some alternate discussion board.
Offer benefits over using an #[inline] on function?
In Readme.md you mentioned something about a We work around some performance bottlenecks imposed by safe rust Does this means the indexing penalty you pay for safe array access?
The text was updated successfully, but these errors were encountered:
Let me preface this as this project is awesome and I quite enjoyed reading through code. I'm reading cause I'm intrested in SIMD-ifying my YAML parsing crate.
But I got few questions about the implementation details, or link me to some alternate discussion board.
Here are the questions:
Why are structural indexes:
simd-json/src/lib.rs
Lines 779 to 781 in b249c70
Vec<u32>
and notVec<u64>
?Does using macros like this one:
simd-json/src/stage2.rs
Lines 128 to 144 in b249c70
Offer benefits over using an
#[inline]
on function?In Readme.md you mentioned something about a
We work around some performance bottlenecks imposed by safe rust
Does this means the indexing penalty you pay for safe array access?The text was updated successfully, but these errors were encountered: