Skip to content
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

Merged
merged 4 commits into from
Apr 23, 2023

Conversation

workingjubilee
Copy link
Member

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.

@workingjubilee
Copy link
Member Author

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.

Copy link
Member

@programmerjake programmerjake left a 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!

@workingjubilee workingjubilee force-pushed the simdty-docs-using-elements branch from c3d6f33 to aebf287 Compare April 11, 2023 21:42
Comment on lines 34 to 42
/// 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();
Copy link
Member Author

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.

@workingjubilee workingjubilee force-pushed the simdty-docs-using-elements branch from 10d53e4 to db04eda Compare April 22, 2023 22:49
workingjubilee and others added 3 commits April 22, 2023 17:58
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]>
@workingjubilee workingjubilee force-pushed the simdty-docs-using-elements branch from db04eda to 4064678 Compare April 23, 2023 00:59
@workingjubilee workingjubilee merged commit ad8afa8 into master Apr 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants