Uses of Interface
org.tensorflow.ndarray.buffer.BooleanDataBuffer
-
-
Uses of BooleanDataBuffer in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray with parameters of type BooleanDataBuffer Modifier and Type Method Description BooleanNdArrayBooleanNdArray. read(BooleanDataBuffer dst)static BooleanNdArrayNdArrays. wrap(Shape shape, BooleanDataBuffer buffer)Wraps a buffer in a boolean N-dimensional array of a given shape.BooleanNdArrayBooleanNdArray. write(BooleanDataBuffer src) -
Uses of BooleanDataBuffer in org.tensorflow.ndarray.buffer
Methods in org.tensorflow.ndarray.buffer that return BooleanDataBuffer Modifier and Type Method Description BooleanDataBufferByteDataBuffer. asBooleans()Return this byte buffer as a buffer of booleans.BooleanDataBufferBooleanDataBuffer. copyTo(DataBuffer<Boolean> dst, long size)default BooleanDataBufferBooleanDataBuffer. narrow(long size)static BooleanDataBufferDataBuffers. of(boolean... values)Create a buffer from an array of booleans into a data buffer.static BooleanDataBufferDataBuffers. of(boolean[] array, boolean readOnly, boolean makeCopy)Create a buffer from an array of booleans into a data buffer.static BooleanDataBufferDataBuffers. ofBooleans(long size)Creates a buffer of booleans that can store up tosizevaluesdefault BooleanDataBufferBooleanDataBuffer. offset(long index)default BooleanDataBufferBooleanDataBuffer. read(boolean[] dst)Bulk get method, using boolean arrays.BooleanDataBufferBooleanDataBuffer. read(boolean[] dst, int offset, int length)Bulk get method, using boolean arrays.BooleanDataBufferBooleanDataBuffer. setBoolean(boolean value, long index)Writes the given boolean into this buffer at the given index.default BooleanDataBufferBooleanDataBuffer. setObject(Boolean value, long index)BooleanDataBufferBooleanDataBuffer. slice(long index, long size)default BooleanDataBufferBooleanDataBuffer. write(boolean[] src)Bulk put method, using boolean arrays.BooleanDataBufferBooleanDataBuffer. write(boolean[] src, int offset, int length)Bulk put method, using boolean arrays.Methods in org.tensorflow.ndarray.buffer that return types with arguments of type BooleanDataBuffer Modifier and Type Method Description default DataBufferWindow<BooleanDataBuffer>BooleanDataBuffer. window(long size) -
Uses of BooleanDataBuffer in org.tensorflow.ndarray.buffer.layout
Methods in org.tensorflow.ndarray.buffer.layout that return BooleanDataBuffer Modifier and Type Method Description default BooleanDataBufferBooleanDataLayout. applyTo(S buffer) -
Uses of BooleanDataBuffer in org.tensorflow.ndarray.impl.buffer.adapter
Methods in org.tensorflow.ndarray.impl.buffer.adapter that return BooleanDataBuffer Modifier and Type Method Description static <S extends DataBuffer<?>>
BooleanDataBufferDataBufferAdapterFactory. create(S buffer, BooleanDataLayout<S> layout)Creates an adapter that applies a boolean data layout to the given buffer. -
Uses of BooleanDataBuffer in org.tensorflow.ndarray.impl.buffer.misc
Methods in org.tensorflow.ndarray.impl.buffer.misc that return BooleanDataBuffer Modifier and Type Method Description static BooleanDataBufferMiscDataBufferFactory. create(boolean[] array, boolean readOnly)static BooleanDataBufferMiscDataBufferFactory. create(BitSet bitSet, long numBits, boolean readOnly) -
Uses of BooleanDataBuffer in org.tensorflow.ndarray.impl.buffer.raw
Methods in org.tensorflow.ndarray.impl.buffer.raw that return BooleanDataBuffer Modifier and Type Method Description static BooleanDataBufferRawDataBufferFactory. create(boolean[] array, boolean readOnly)protected static BooleanDataBufferRawDataBufferFactory. mapNativeBooleans(long address, long size, boolean readOnly) -
Uses of BooleanDataBuffer in org.tensorflow.ndarray.impl.dense
Methods in org.tensorflow.ndarray.impl.dense that return BooleanDataBuffer Modifier and Type Method Description protected BooleanDataBufferBooleanDenseNdArray. buffer()Methods in org.tensorflow.ndarray.impl.dense with parameters of type BooleanDataBuffer Modifier and Type Method Description static BooleanNdArrayBooleanDenseNdArray. create(BooleanDataBuffer buffer, Shape shape)BooleanNdArrayBooleanDenseNdArray. read(BooleanDataBuffer dst)BooleanNdArrayBooleanDenseNdArray. write(BooleanDataBuffer src)Constructors in org.tensorflow.ndarray.impl.dense with parameters of type BooleanDataBuffer Constructor Description BooleanDenseNdArray(BooleanDataBuffer buffer, Shape shape) -
Uses of BooleanDataBuffer in org.tensorflow.ndarray.impl.sparse
Methods in org.tensorflow.ndarray.impl.sparse with parameters of type BooleanDataBuffer Modifier and Type Method Description static BooleanSparseNdArrayBooleanSparseNdArray. create(BooleanDataBuffer dataBuffer, boolean defaultValue, DimensionalSpace dimensions)Creates a new BooleanSparseNdArray from a data bufferstatic BooleanSparseNdArrayBooleanSparseNdArray. create(BooleanDataBuffer buffer, boolean defaultValue, Shape shape)Creates a new empty BooleanSparseNdArray from a float data bufferstatic BooleanSparseNdArrayBooleanSparseNdArray. create(BooleanDataBuffer dataBuffer, DimensionalSpace dimensions)Creates a new BooleanSparseNdArray from a data bufferstatic BooleanSparseNdArrayBooleanSparseNdArray. create(BooleanDataBuffer buffer, Shape shape)Creates a new empty BooleanSparseNdArray from a float data bufferBooleanNdArrayBooleanSparseNdArray. read(BooleanDataBuffer dst)BooleanNdArrayBooleanSparseNdArray. write(BooleanDataBuffer src) -
Uses of BooleanDataBuffer in org.tensorflow.ndarray.impl.sparse.slice
Methods in org.tensorflow.ndarray.impl.sparse.slice with parameters of type BooleanDataBuffer Modifier and Type Method Description BooleanNdArrayBooleanSparseSlice. read(BooleanDataBuffer dst)BooleanNdArrayBooleanSparseSlice. write(BooleanDataBuffer src)
-