-
Notifications
You must be signed in to change notification settings - Fork 19
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
Add docs for torch.chain_matmul, torch.qr, torch.range, torch.cholesky #59
Conversation
README.md
Outdated
The function `torch.range()` is deprecated as its usage is incompatible with Python's builtin range. Instead, use `torch.arange()` as it produces values in `[start, end)`. | ||
|
||
Migration guide: | ||
* The usage of `torch.range(a, b)` should be replaced with `torch.arange(a, b)`. |
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 is not correct, upper bound needs to be changed.
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.
Addressed changes in 34f8af9
README.md
Outdated
This function is deprecated in favor of `torch.linalg.multi_dot`. | ||
|
||
Migration guide: | ||
`multi_dot` accepts a list of two or more tensors whereas `chain_multimul` accepted multiple tensors as input arguments. For migration, convert the multiple tensors in argument of `chain_multimul` into a list of two or more tensors for `multi_dot`. |
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 talks about chain_multimul
, not chain_matmul
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.
Addresses changes in 34f8af9
Partially addresses #56
Added
TOR101
deprecation doc fortorch.cholesky
,torch.chain_matmul
,torch.qr
,torch.range
.