org.nd4j.linalg.cpu.nativecpu.buffer.HalfBuffer Maven / Gradle / Ivy
/*
* ******************************************************************************
* *
* *
* * This program and the accompanying materials are made available under the
* * terms of the Apache License, Version 2.0 which is available at
* * https://www.apache.org/licenses/LICENSE-2.0.
* *
* * See the NOTICE file distributed with this work for additional
* * information regarding copyright ownership.
* * Unless required by applicable law or agreed to in writing, software
* * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* * License for the specific language governing permissions and limitations
* * under the License.
* *
* * SPDX-License-Identifier: Apache-2.0
* *****************************************************************************
*/
package org.nd4j.linalg.cpu.nativecpu.buffer;
import org.bytedeco.javacpp.Pointer;
import org.bytedeco.javacpp.indexer.Indexer;
import org.nd4j.linalg.api.buffer.DataBuffer;
import org.nd4j.linalg.api.buffer.DataType;
import org.nd4j.linalg.api.memory.MemoryWorkspace;
import java.nio.ByteBuffer;
/**
* Data buffer for floats
*
* @author Adam Gibson
*/
public class HalfBuffer extends BaseCpuDataBuffer {
/**
* Meant for creating another view of a buffer
*
* @param pointer the underlying buffer to create a view from
* @param indexer the indexer for the pointer
* @param length the length of the view
*/
public HalfBuffer(Pointer pointer, Indexer indexer, long length) {
super(pointer, indexer, length);
}
/**
* Create a float buffer with the given length
* @param length the float buffer with the given length
*/
public HalfBuffer(long length) {
super(length);
}
public HalfBuffer(ByteBuffer buffer, DataType dataType, long length, long offset) {
super(buffer, dataType, length, offset);
}
public HalfBuffer(long length, boolean initialize) {
super(length, initialize);
}
public HalfBuffer(long length, boolean initialize, MemoryWorkspace workspace) {
super(length, initialize, workspace);
}
public HalfBuffer(int length, int elementSize) {
super(length, elementSize);
}
public HalfBuffer(int length, int elementSize, long offset) {
super(length, elementSize, offset);
}
/**
* Initialize the opType of this buffer
*/
@Override
protected void initTypeAndSize() {
type = DataType.HALF;
elementSize = 2;
}
public HalfBuffer(DataBuffer underlyingBuffer, long length, long offset) {
super(underlyingBuffer, length, offset);
}
public HalfBuffer(float[] data) {
this(data, true);
}
public HalfBuffer(float[] data, MemoryWorkspace workspace) {
this(data, true, workspace);
}
public HalfBuffer(int[] data) {
this(data, true);
}
public HalfBuffer(double[] data) {
this(data, true);
}
public HalfBuffer(int[] data, boolean copyOnOps) {
super(data, copyOnOps);
}
public HalfBuffer(int[] data, boolean copy, long offset) {
super(data, copy, offset);
}
public HalfBuffer(double[] data, boolean copyOnOps) {
super(data, copyOnOps);
}
public HalfBuffer(double[] data, boolean copy, long offset) {
super(data, copy, offset);
}
public HalfBuffer(float[] floats, boolean copy) {
super(floats, copy);
}
public HalfBuffer(float[] floats, boolean copy, MemoryWorkspace workspace) {
super(floats, copy, workspace);
}
public HalfBuffer(float[] data, boolean copy, long offset) {
super(data, copy, offset);
}
public HalfBuffer(float[] data, boolean copy, long offset, MemoryWorkspace workspace) {
super(data, copy, offset, workspace);
}
@Override
protected DataBuffer create(long length) {
return new HalfBuffer(length);
}
@Override
public DataBuffer create(double[] data) {
return new HalfBuffer(data);
}
@Override
public DataBuffer create(float[] data) {
return new HalfBuffer(data);
}
@Override
public DataBuffer create(int[] data) {
return new HalfBuffer(data);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy