Uses of Interface
org.tensorflow.ndarray.buffer.LongDataBuffer
Packages that use LongDataBuffer
Package
Description
-
Uses of LongDataBuffer in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray with parameters of type LongDataBufferModifier and TypeMethodDescriptionLongNdArray.copyFrom(LongDataBuffer src) LongNdArray.copyTo(LongDataBuffer dst) static LongNdArrayNdArrays.wrap(Shape shape, LongDataBuffer buffer) Wraps a buffer in a long N-dimensional array of a given shape. -
Uses of LongDataBuffer in org.tensorflow.ndarray.buffer
Methods in org.tensorflow.ndarray.buffer that return LongDataBufferModifier and TypeMethodDescriptionByteDataBuffer.asLongs()Return this byte buffer as a buffer of longs.LongDataBuffer.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.LongDataBuffer.read(long[] dst, int offset, int length) Bulk get method, using long arrays.LongDataBuffer.setLong(long value, long index) Writes the given long into this buffer at the given index.default LongDataBufferLongDataBuffer.slice(long index, long size) default LongDataBufferLongDataBuffer.write(long[] src) Bulk put method, using long arrays.LongDataBuffer.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 LongDataBufferModifier and TypeMethodDescriptiondefault 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 -
Uses of LongDataBuffer in org.tensorflow.ndarray.impl.buffer.adapter
Methods in org.tensorflow.ndarray.impl.buffer.adapter that return LongDataBufferModifier and TypeMethodDescriptionstatic <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 LongDataBufferModifier and TypeMethodDescriptionstatic LongDataBufferNioDataBufferFactory.create(LongBuffer buffer) -
Uses of LongDataBuffer in org.tensorflow.ndarray.impl.buffer.raw
Methods in org.tensorflow.ndarray.impl.buffer.raw that return LongDataBufferModifier and TypeMethodDescriptionstatic 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 LongDataBufferMethods in org.tensorflow.ndarray.impl.dense with parameters of type LongDataBufferModifier and TypeMethodDescriptionLongDenseNdArray.copyFrom(LongDataBuffer src) LongDenseNdArray.copyTo(LongDataBuffer dst) static LongNdArrayLongDenseNdArray.create(LongDataBuffer buffer, Shape shape) Constructors in org.tensorflow.ndarray.impl.dense with parameters of type LongDataBuffer -
Uses of LongDataBuffer in org.tensorflow.ndarray.impl.sparse
Methods in org.tensorflow.ndarray.impl.sparse with parameters of type LongDataBufferModifier and TypeMethodDescriptionLongSparseNdArray.copyFrom(LongDataBuffer src) LongSparseNdArray.copyTo(LongDataBuffer dst) 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 buffer -
Uses of LongDataBuffer in org.tensorflow.ndarray.impl.sparse.slice
Methods in org.tensorflow.ndarray.impl.sparse.slice with parameters of type LongDataBufferModifier and TypeMethodDescriptionLongSparseSlice.copyFrom(LongDataBuffer src) LongSparseSlice.copyTo(LongDataBuffer dst)