LongDenseNdArray

public class LongDenseNdArray

Public Methods

LongNdArray
copyTo(NdArray<Long> dst)
static LongNdArray
create(LongDataBuffer buffer, Shape shape)
long
getLong(long... indices)
Returns the long value of the scalar found at the given coordinates.
LongNdArray
LongNdArray
setLong(long value, long... indices)
Assigns the long value of the scalar found at the given coordinates.
LongNdArray

Inherited Methods

org.tensorflow.ndarray.impl.dense.AbstractDenseNdArray
NdArraySequence<LongNdArray>
elements(int dimensionIdx)
boolean
equals(Object obj)
LongNdArray
get(long... coords)
Long
getObject(long... coords)
int
LongNdArray
read(DataBuffer<Long> dst)
LongNdArray
set(NdArray<Long> src, long... coordinates)
LongNdArray
setObject(Long value, long... coords)
LongNdArray
slice(long position, DimensionalSpace sliceDimensions)
LongNdArray
slice(Index... indices)
LongNdArray
write(DataBuffer<Long> src)
org.tensorflow.ndarray.impl.AbstractNdArray
DimensionalSpace
boolean
equals(Object obj)
int
NdArraySequence<LongNdArray>
scalars()
Returns a sequence of all scalars in this array.
Shape
shape()
abstract LongNdArray
slice(long position, DimensionalSpace dimensions)
boolean
equals(Object arg0)
final Class<?>
getClass()
int
hashCode()
final void
notify()
final void
notifyAll()
String
toString()
final void
wait(long arg0, int arg1)
final void
wait(long arg0)
final void
wait()
org.tensorflow.ndarray.NdArray
abstract NdArray<Long>
copyTo(NdArray<Long> dst)
Copy the content of this array to the destination array.
abstract NdArraySequence<? extends NdArray<T>>
elements(int dimensionIdx)
Returns a sequence of all elements at a given dimension.
abstract boolean
equals(Object obj)
Checks equality between n-dimensional arrays.
abstract NdArray<Long>
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
abstract Long
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
abstract NdArray<Long>
read(DataBuffer<Long> dst)
Read the content of this N-dimensional array into the destination buffer.
abstract NdArraySequence<? extends NdArray<T>>
scalars()
Returns a sequence of all scalars in this array.
abstract NdArray<Long>
set(NdArray<Long> src, long... coordinates)
Assigns the value of the N-dimensional element found at the given coordinates.
abstract NdArray<Long>
setObject(Long value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
abstract NdArray<Long>
slice(Index... indices)
Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
abstract NdArray<Long>
write(DataBuffer<Long> src)
Write the content of this N-dimensional array from the source buffer.
org.tensorflow.ndarray.LongNdArray
abstract LongNdArray
copyTo(NdArray<Long> dst)
abstract NdArraySequence<LongNdArray>
elements(int dimensionIdx)
Returns a sequence of all elements at a given dimension.
abstract LongNdArray
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
abstract long
getLong(long... coordinates)
Returns the long value of the scalar found at the given coordinates.
abstract Long
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
abstract LongNdArray
read(DataBuffer<Long> dst)
abstract LongNdArray
abstract NdArraySequence<LongNdArray>
scalars()
Returns a sequence of all scalars in this array.
abstract LongNdArray
set(NdArray<Long> src, long... coordinates)
abstract LongNdArray
setLong(long value, long... coordinates)
Assigns the long value of the scalar found at the given coordinates.
abstract LongNdArray
setObject(Long value, long... coordinates)
abstract LongNdArray
slice(Index... indices)
Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
abstract LongNdArray
abstract LongNdArray
write(DataBuffer<Long> src)
org.tensorflow.ndarray.Shaped
abstract int
rank()
abstract Shape
shape()
abstract long
size()
Computes and returns the total size of this container, in number of values.
org.tensorflow.ndarray.NdArray
abstract NdArray<Long>
copyTo(NdArray<Long> dst)
Copy the content of this array to the destination array.
abstract NdArraySequence<? extends NdArray<T>>
elements(int dimensionIdx)
Returns a sequence of all elements at a given dimension.
abstract boolean
equals(Object obj)
Checks equality between n-dimensional arrays.
abstract NdArray<Long>
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
abstract Long
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
abstract NdArray<Long>
read(DataBuffer<Long> dst)
Read the content of this N-dimensional array into the destination buffer.
abstract NdArraySequence<? extends NdArray<T>>
scalars()
Returns a sequence of all scalars in this array.
abstract NdArray<Long>
set(NdArray<Long> src, long... coordinates)
Assigns the value of the N-dimensional element found at the given coordinates.
abstract NdArray<Long>
setObject(Long value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
abstract NdArray<Long>
slice(Index... indices)
Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
abstract NdArray<Long>
write(DataBuffer<Long> src)
Write the content of this N-dimensional array from the source buffer.

Public Methods

public LongNdArray copyTo (NdArray<Long> dst)

public static LongNdArray create (LongDataBuffer buffer, Shape shape)

public long getLong (long... indices)

Returns the long value of the scalar found at the given coordinates.

To access the scalar element, the number of coordinates provided must be equal to the number of dimensions of this array (i.e. its rank). For example:

LongNdArray matrix = NdArrays.ofLongs(shape(2, 2));  // matrix rank = 2
  matrix.getLong(0, 1);  // succeeds, returns 0L
  matrix.getLong(0);  // throws IllegalRankException

  LongNdArray scalar = matrix.get(0, 1);  // scalar rank = 0
  scalar.getLong();  // succeeds, returns 0L
 

Parameters
indices coordinates of the scalar to resolve
Returns
  • value of that scalar

public LongNdArray read (LongDataBuffer dst)

public LongNdArray setLong (long value, long... indices)

Assigns the long value of the scalar found at the given coordinates.

To access the scalar element, the number of coordinates provided must be equal to the number of dimensions of this array (i.e. its rank). For example:

LongNdArray matrix = NdArrays.ofLongs(shape(2, 2));  // matrix rank = 2
  matrix.setLong(10L, 0, 1);  // succeeds
  matrix.setLong(10L, 0);  // throws IllegalRankException

  LongNdArray scalar = matrix.get(0, 1);  // scalar rank = 0
  scalar.setLong(10L);  // succeeds
 

Parameters
value value to assign
indices coordinates of the scalar to assign
Returns
  • this array

public LongNdArray write (LongDataBuffer src)