Skip to content
This repository was archived by the owner on Jul 15, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add version in name change notice
  • Loading branch information
karllessard committed Feb 19, 2024
commit 24b2907c69ec6c298401f75439bbfe2de16fc6a6
6 changes: 4 additions & 2 deletions ndarray/src/main/java/org/tensorflow/ndarray/NdArray.java
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ default Stream<T> streamOfObjects() {
* array, or an exception is thrown. After the copy, content of the buffer and of the array can be
* altered independently, without affecting each other.
*
* <p><i>Note: this method was previously named `read(DataBuffer<T>)`, which led to confusion.</i>
* <p><i>Note: in version 0.4.0 and earlier, this method was named {@code read(DataBuffer<T>)}. It has been renamed to
* explicitly indicate the direction of the data flow to avoid confusion.</i>
*
* @param dst the destination buffer
* @return this array
Expand All @@ -307,7 +308,8 @@ default Stream<T> streamOfObjects() {
* array, or an exception is thrown. After the copy, content of the buffer and of the array can be
* altered independently, without affecting each other.
*
* <p><i>Note: this method was previously named `write(DataBuffer<T>)`, which led to confusion.</i>
* <p><i>Note: in version 0.4.0 and earlier, this method was named {@code write(DataBuffer<T>)}. It has been renamed to
* explicitly indicate the direction of the data flow to avoid confusion.</i>
*
* @param src the source buffer
* @return this array
Expand Down