-
Notifications
You must be signed in to change notification settings - Fork 86
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
lane -> element for core::simd::Simd
#338
Conversation
Also yes, I realize it's slightly confusing to not change the actual function names where applicable, yet, but we were already inconsistent. I feel hashing out a bit of how the documentation should look is a necessary first step to updating any of the function names still not yet renamed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
other than those minor issues, lgtm!
c3d6f33
to
aebf287
Compare
crates/core_simd/src/vector.rs
Outdated
/// More complex elementwise operations may join vectors with masks which "enable" or "disable" | ||
/// appropriate elements. These often involve a `Simd<T, N>` where `T` is `usize`, `*const T`, | ||
/// or `*mut T`, and "enabling" means to use the index or pointer. | ||
/// The resulting operation is like a mutating iteration: | ||
/// | ||
/// ```rust | ||
/// # #![feature(portable_simd)] | ||
/// # use core::simd::Simd; | ||
/// let source: Vec<i32> = (0..100).into_iter().collect(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This example is clearly unfinished, I am removing it for now since it's entirely greenfield.
10d53e4
to
db04eda
Compare
A while ago we began saying T, N instead of T, LANES in reference to Simd. At some point that leaked in to us checking in code with const N: usize. After a while, we had a discussion and agreed that "lanes", while common, is unnecessary jargon for Rust learners who aren't familiar with SIMD, and is fully interchangeable with terms for arrays like element and index. But we never acted on that. Let's update the main type's docs, at least. The example tweaks also enable removing a slated-for-removal nightly fn.
Saying "elementwise (non-)equal" may suggest it returns a vector. The comments should be clear that it instead reduces to a scalar. Co-authored-by: Jacob Lifshay <[email protected]>
db04eda
to
4064678
Compare
A while ago we began saying T, N instead of T, LANES in reference to Simd. At some point that leaked in to us checking in code with const N: usize. After a while, we had a discussion and agreed that "lanes", while common, is unnecessary jargon for Rust learners who aren't familiar with SIMD, and is fully interchangeable with terms for arrays like element and index.
But we never acted on that. Let's update the main type's docs, at least. VL has been proposed here because Simd appears beside [T; N] often, so getting ahead on assigning a name to Simd's specific N may help? The example tweaks enable removing a slated-for-removal nightly fn.
I have the rest of this as it would go across the rest of the module's API docs waiting in the wings, but I figured that any kibitzing over how this should be done should be handled on Simd's docs because it's pretty procedurally applied elsewhere. There's basically "how we talk about Simd" and "how we talk about Mask" as the two major points of interest, so once both of those are done, and they can be mostly-separate discussions, it's robotic.