Uses of Interface
org.tensorflow.ndarray.buffer.DoubleDataBuffer
-
-
Uses of DoubleDataBuffer in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray with parameters of type DoubleDataBuffer Modifier and Type Method Description DoubleNdArrayDoubleNdArray. read(DoubleDataBuffer dst)static DoubleNdArrayNdArrays. wrap(Shape shape, DoubleDataBuffer buffer)Wraps a buffer in a double N-dimensional array of a given shape.DoubleNdArrayDoubleNdArray. write(DoubleDataBuffer src) -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.buffer
Methods in org.tensorflow.ndarray.buffer that return DoubleDataBuffer Modifier and Type Method Description DoubleDataBufferByteDataBuffer. asDoubles()Return this byte buffer as a buffer of doubles.DoubleDataBufferDoubleDataBuffer. 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.DoubleDataBufferDoubleDataBuffer. read(double[] dst, int offset, int length)Bulk get method, using double arrays.DoubleDataBufferDoubleDataBuffer. setDouble(double value, long index)Writes the given double into this buffer at the given index.default DoubleDataBufferDoubleDataBuffer. setObject(Double value, long index)DoubleDataBufferDoubleDataBuffer. slice(long index, long size)default DoubleDataBufferDoubleDataBuffer. write(double[] src)Bulk put method, using double arrays.DoubleDataBufferDoubleDataBuffer. 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 DoubleDataBuffer Modifier and Type Method Description default 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 Modifier and Type Method Description default DoubleDataBufferDoubleDataLayout. applyTo(S buffer) -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.impl.buffer.adapter
Methods in org.tensorflow.ndarray.impl.buffer.adapter that return DoubleDataBuffer Modifier and Type Method Description static <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 DoubleDataBuffer Modifier and Type Method Description static DoubleDataBufferNioDataBufferFactory. create(DoubleBuffer buffer) -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.impl.buffer.raw
Methods in org.tensorflow.ndarray.impl.buffer.raw that return DoubleDataBuffer Modifier and Type Method Description static 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 DoubleDataBuffer Modifier and Type Method Description protected DoubleDataBufferDoubleDenseNdArray. buffer()Methods in org.tensorflow.ndarray.impl.dense with parameters of type DoubleDataBuffer Modifier and Type Method Description static DoubleNdArrayDoubleDenseNdArray. create(DoubleDataBuffer buffer, Shape shape)DoubleNdArrayDoubleDenseNdArray. read(DoubleDataBuffer dst)DoubleNdArrayDoubleDenseNdArray. write(DoubleDataBuffer src)Constructors in org.tensorflow.ndarray.impl.dense with parameters of type DoubleDataBuffer Constructor Description DoubleDenseNdArray(DoubleDataBuffer buffer, Shape shape) -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.impl.sparse
Methods in org.tensorflow.ndarray.impl.sparse with parameters of type DoubleDataBuffer Modifier and Type Method Description 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 bufferDoubleNdArrayDoubleSparseNdArray. read(DoubleDataBuffer dst)DoubleNdArrayDoubleSparseNdArray. write(DoubleDataBuffer src) -
Uses of DoubleDataBuffer in org.tensorflow.ndarray.impl.sparse.slice
Methods in org.tensorflow.ndarray.impl.sparse.slice with parameters of type DoubleDataBuffer Modifier and Type Method Description DoubleNdArrayDoubleSparseSlice. read(DoubleDataBuffer dst)DoubleNdArrayDoubleSparseSlice. write(DoubleDataBuffer src)
-