This commit is contained in:
Srinath Kailasa
2025-07-31 03:14:54 +01:00
committed by GitHub
parent 6fb5e667c1
commit 3b054767b3
3 changed files with 12 additions and 12 deletions

View File

@ -86,7 +86,7 @@ and destroying the `Tensor` doesn't deallocate the array of elements.
This has implications for developers of generic `Tensor` algorithms.
For example, input `Tensor` parameters of a function
should be passed by referece or const reference,
should be passed by reference or const reference,
because passing a `Tensor` by value
may or may not make a deep copy of the `Tensor`'s elements.