Uses of Interface
org.tensorflow.ndarray.buffer.LongDataBuffer
-
-
Uses of LongDataBuffer in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray with parameters of type LongDataBuffer Modifier and Type Method Description LongNdArrayLongNdArray. read(LongDataBuffer dst)static LongNdArrayNdArrays. wrap(Shape shape, LongDataBuffer buffer)Wraps a buffer in a long N-dimensional array of a given shape.LongNdArrayLongNdArray. write(LongDataBuffer src) -
Uses of LongDataBuffer in org.tensorflow.ndarray.buffer
Methods in org.tensorflow.ndarray.buffer that return LongDataBuffer Modifier and Type Method Description LongDataBufferByteDataBuffer. asLongs()Return this byte buffer as a buffer of longs.LongDataBufferLongDataBuffer. copyTo(DataBuffer<Long> dst, long size)default LongDataBufferLongDataBuffer. narrow(long size)static LongDataBufferDataBuffers. of(long... values)Create a buffer from an array of longs into a data buffer.static LongDataBufferDataBuffers. of(long[] array, boolean readOnly, boolean makeCopy)Create a buffer from an array of longs into a data buffer.static LongDataBufferDataBuffers. of(LongBuffer buf)Wraps a JDK NIOLongBufferinto a data buffer.default LongDataBufferLongDataBuffer. offset(long index)static LongDataBufferDataBuffers. ofLongs(long size)Creates a buffer of longs that can store up tosizevaluesdefault LongDataBufferLongDataBuffer. read(long[] dst)Bulk get method, using long arrays.LongDataBufferLongDataBuffer. read(long[] dst, int offset, int length)Bulk get method, using long arrays.LongDataBufferLongDataBuffer. setLong(long value, long index)Writes the given long into this buffer at the given index.default LongDataBufferLongDataBuffer. setObject(Long value, long index)LongDataBufferLongDataBuffer. slice(long index, long size)default LongDataBufferLongDataBuffer. write(long[] src)Bulk put method, using long arrays.LongDataBufferLongDataBuffer. write(long[] src, int offset, int length)Bulk put method, using long arrays.Methods in org.tensorflow.ndarray.buffer that return types with arguments of type LongDataBuffer Modifier and Type Method Description default DataBufferWindow<LongDataBuffer>LongDataBuffer. window(long size) -
Uses of LongDataBuffer in org.tensorflow.ndarray.buffer.layout
Methods in org.tensorflow.ndarray.buffer.layout that return LongDataBuffer Modifier and Type Method Description default LongDataBufferLongDataLayout. applyTo(S buffer) -
Uses of LongDataBuffer in org.tensorflow.ndarray.impl.buffer.adapter
Methods in org.tensorflow.ndarray.impl.buffer.adapter that return LongDataBuffer Modifier and Type Method Description static <S extends DataBuffer<?>>
LongDataBufferDataBufferAdapterFactory. create(S buffer, LongDataLayout<S> layout)Creates an adapter that applies a long data layout to the given buffer. -
Uses of LongDataBuffer in org.tensorflow.ndarray.impl.buffer.nio
Methods in org.tensorflow.ndarray.impl.buffer.nio that return LongDataBuffer Modifier and Type Method Description static LongDataBufferNioDataBufferFactory. create(LongBuffer buffer) -
Uses of LongDataBuffer in org.tensorflow.ndarray.impl.buffer.raw
Methods in org.tensorflow.ndarray.impl.buffer.raw that return LongDataBuffer Modifier and Type Method Description static LongDataBufferRawDataBufferFactory. create(long[] array, boolean readOnly)protected static LongDataBufferRawDataBufferFactory. mapNativeLongs(long address, long size, boolean readOnly) -
Uses of LongDataBuffer in org.tensorflow.ndarray.impl.dense
Methods in org.tensorflow.ndarray.impl.dense that return LongDataBuffer Modifier and Type Method Description protected LongDataBufferLongDenseNdArray. buffer()Methods in org.tensorflow.ndarray.impl.dense with parameters of type LongDataBuffer Modifier and Type Method Description static LongNdArrayLongDenseNdArray. create(LongDataBuffer buffer, Shape shape)LongNdArrayLongDenseNdArray. read(LongDataBuffer dst)LongNdArrayLongDenseNdArray. write(LongDataBuffer src)Constructors in org.tensorflow.ndarray.impl.dense with parameters of type LongDataBuffer Constructor Description LongDenseNdArray(LongDataBuffer buffer, Shape shape) -
Uses of LongDataBuffer in org.tensorflow.ndarray.impl.sparse
Methods in org.tensorflow.ndarray.impl.sparse with parameters of type LongDataBuffer Modifier and Type Method Description static LongSparseNdArrayLongSparseNdArray. create(LongDataBuffer dataBuffer, long defaultValue, DimensionalSpace dimensions)Creates a new LongSparseNdArray from a data bufferstatic LongSparseNdArrayLongSparseNdArray. create(LongDataBuffer buffer, long defaultValue, Shape shape)Creates a new empty LongSparseNdArray from a long data bufferstatic LongSparseNdArrayLongSparseNdArray. create(LongDataBuffer dataBuffer, DimensionalSpace dimensions)Creates a new LongSparseNdArray from a data bufferstatic LongSparseNdArrayLongSparseNdArray. create(LongDataBuffer buffer, Shape shape)Creates a new empty LongSparseNdArray from a long data bufferLongNdArrayLongSparseNdArray. read(LongDataBuffer dst)LongNdArrayLongSparseNdArray. write(LongDataBuffer src) -
Uses of LongDataBuffer in org.tensorflow.ndarray.impl.sparse.slice
Methods in org.tensorflow.ndarray.impl.sparse.slice with parameters of type LongDataBuffer Modifier and Type Method Description LongNdArrayLongSparseSlice. read(LongDataBuffer dst)LongNdArrayLongSparseSlice. write(LongDataBuffer src)
-