Uses of Interface
org.tensorflow.ndarray.buffer.DoubleDataBuffer
Packages that use DoubleDataBuffer
Package
Description
-
Uses of DoubleDataBuffer in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray with parameters of type DoubleDataBufferModifier and TypeMethodDescriptionDoubleNdArray.copyFrom(DoubleDataBuffer src) DoubleNdArray.copyTo(DoubleDataBuffer dst) static DoubleNdArrayNdArrays.wrap(Shape shape, DoubleDataBuffer buffer) Wraps a buffer in a double N-dimensional array of a given shape. -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.buffer
Methods in org.tensorflow.ndarray.buffer that return DoubleDataBufferModifier and TypeMethodDescriptionByteDataBuffer.asDoubles()Return this byte buffer as a buffer of doubles.DoubleDataBuffer.copyTo(DataBuffer<Double> dst, long size) default DoubleDataBufferDoubleDataBuffer.narrow(long size) static DoubleDataBufferDataBuffers.of(double... values) Create a buffer from an array of doubles into a data buffer.static DoubleDataBufferDataBuffers.of(double[] array, boolean readOnly, boolean makeCopy) Create a buffer from an array of doubles into a data buffer.static DoubleDataBufferDataBuffers.of(DoubleBuffer buf) Wraps a JDK NIODoubleBufferinto a data buffer.static DoubleDataBufferDataBuffers.ofDoubles(long size) Creates a buffer of doubles that can store up tosizevaluesdefault DoubleDataBufferDoubleDataBuffer.offset(long index) default DoubleDataBufferDoubleDataBuffer.read(double[] dst) Bulk get method, using double arrays.DoubleDataBuffer.read(double[] dst, int offset, int length) Bulk get method, using double arrays.DoubleDataBuffer.setDouble(double value, long index) Writes the given double into this buffer at the given index.default DoubleDataBufferDoubleDataBuffer.slice(long index, long size) default DoubleDataBufferDoubleDataBuffer.write(double[] src) Bulk put method, using double arrays.DoubleDataBuffer.write(double[] src, int offset, int length) Bulk put method, using double arrays.Methods in org.tensorflow.ndarray.buffer that return types with arguments of type DoubleDataBufferModifier and TypeMethodDescriptiondefault DataBufferWindow<DoubleDataBuffer> DoubleDataBuffer.window(long size) -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.buffer.layout
Methods in org.tensorflow.ndarray.buffer.layout that return DoubleDataBuffer -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.impl.buffer.adapter
Methods in org.tensorflow.ndarray.impl.buffer.adapter that return DoubleDataBufferModifier and TypeMethodDescriptionstatic <S extends DataBuffer<?>>
DoubleDataBufferDataBufferAdapterFactory.create(S buffer, DoubleDataLayout<S> layout) Creates an adapter that applies a double data layout to the given buffer. -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.impl.buffer.nio
Methods in org.tensorflow.ndarray.impl.buffer.nio that return DoubleDataBufferModifier and TypeMethodDescriptionstatic DoubleDataBufferNioDataBufferFactory.create(DoubleBuffer buffer) -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.impl.buffer.raw
Methods in org.tensorflow.ndarray.impl.buffer.raw that return DoubleDataBufferModifier and TypeMethodDescriptionstatic DoubleDataBufferRawDataBufferFactory.create(double[] array, boolean readOnly) protected static DoubleDataBufferRawDataBufferFactory.mapNativeDoubles(long address, long size, boolean readOnly) -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.impl.dense
Methods in org.tensorflow.ndarray.impl.dense that return DoubleDataBufferMethods in org.tensorflow.ndarray.impl.dense with parameters of type DoubleDataBufferModifier and TypeMethodDescriptionDoubleDenseNdArray.copyFrom(DoubleDataBuffer src) DoubleDenseNdArray.copyTo(DoubleDataBuffer dst) static DoubleNdArrayDoubleDenseNdArray.create(DoubleDataBuffer buffer, Shape shape) Constructors in org.tensorflow.ndarray.impl.dense with parameters of type DoubleDataBuffer -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.impl.sparse
Methods in org.tensorflow.ndarray.impl.sparse with parameters of type DoubleDataBufferModifier and TypeMethodDescriptionDoubleSparseNdArray.copyFrom(DoubleDataBuffer src) DoubleSparseNdArray.copyTo(DoubleDataBuffer dst) static DoubleSparseNdArrayDoubleSparseNdArray.create(DoubleDataBuffer dataBuffer, double defaultValue, DimensionalSpace dimensions) Creates a new DoubleSparseNdArray from a data bufferstatic DoubleSparseNdArrayDoubleSparseNdArray.create(DoubleDataBuffer buffer, double defaultValue, Shape shape) Creates a new empty DoubleSparseNdArray from a double data bufferstatic DoubleSparseNdArrayDoubleSparseNdArray.create(DoubleDataBuffer dataBuffer, DimensionalSpace dimensions) Creates a new DoubleSparseNdArray from a data bufferstatic DoubleSparseNdArrayDoubleSparseNdArray.create(DoubleDataBuffer buffer, Shape shape) Creates a new empty DoubleSparseNdArray from a double data buffer -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.impl.sparse.slice
Methods in org.tensorflow.ndarray.impl.sparse.slice with parameters of type DoubleDataBufferModifier and TypeMethodDescriptionDoubleSparseSlice.copyFrom(DoubleDataBuffer src) DoubleSparseSlice.copyTo(DoubleDataBuffer dst)