-
Notifications
You must be signed in to change notification settings - Fork 118
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
Vec ops docs #402
Vec ops docs #402
Conversation
* Update README.md (#385) * refactor * refactor * refactor * rename task * update codespell * multi gpu docs (#391) * Refactor * refacotr * fix typo * Apply suggestions from code review Co-authored-by: Jeremy Felder <[email protected]> * refactor * refactor --------- Co-authored-by: DmytroTym <[email protected]> Co-authored-by: ChickenLover <[email protected]> Co-authored-by: Jeremy Felder <[email protected]>
- **`sub`**: Computes the element-wise difference between two vectors. | ||
- **`mul`**: Performs element-wise multiplication of two vectors. | ||
|
||
### Argument Validation |
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.
Remove this part:) check_vec_ops_args
is just for internal use, and the user doesn't need to check anything before calling the methods
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.
I wanted to explain that we implemented this for them, so developers wont think they need to implement it themselves
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.
Inputs validation is the default thing and we do it in all of our primitives, so I don't think we should mention it in the docs
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.
waiting for rust examples
Describe the changes
This PR...
Linked Issues
Resolves #