All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nd4j.linalg.api.buffer.FloatBuffer Maven / Gradle / Ivy

/*
 *
 *  * Copyright 2015 Skymind,Inc.
 *  *
 *  *    Licensed under the Apache License, Version 2.0 (the "License");
 *  *    you may not use this file except in compliance with the License.
 *  *    You may obtain a copy of the License at
 *  *
 *  *        http://www.apache.org/licenses/LICENSE-2.0
 *  *
 *  *    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.
 *
 *
 */

package org.nd4j.linalg.api.buffer;


import org.bytedeco.javacpp.Pointer;
import org.bytedeco.javacpp.indexer.Indexer;
import org.nd4j.linalg.api.complex.IComplexDouble;
import org.nd4j.linalg.api.complex.IComplexFloat;

import java.nio.ByteBuffer;

/**
 * Data buffer for floats
 *
 * @author Adam Gibson
 */
public class FloatBuffer extends BaseDataBuffer {
    /**
     * 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 FloatBuffer(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 FloatBuffer(long length) {
        super(length);

    }

    public FloatBuffer(long length, boolean initialize){
        super(length, initialize);
    }

    public FloatBuffer(int length, int elementSize) {
        super(length, elementSize);
    }

    public FloatBuffer(int length, int elementSize, int offset) {
        super(length, elementSize, offset);
    }

    /**
     * Initialize the type of this buffer
     */
    @Override
    protected void initTypeAndSize() {
        type = Type.FLOAT;
        elementSize = 4;
    }

    public FloatBuffer(DataBuffer underlyingBuffer, long length, long offset) {
        super(underlyingBuffer, length, offset);
    }

    public FloatBuffer(float[] data) {
        this(data, true);
    }

    public FloatBuffer(int[] data) {
        this(data,true);
    }

    public FloatBuffer(double[] data) {
        this(data,true);
    }

    public FloatBuffer(int[] data, boolean copyOnOps) {
        super(data, copyOnOps);
    }

    public FloatBuffer(int[] data, boolean copy, int offset) {
        super(data, copy, offset);
    }

    public FloatBuffer(double[] data, boolean copyOnOps) {
        super(data,copyOnOps);
    }

    public FloatBuffer(double[] data, boolean copy, int offset) {
        super(data, copy, offset);
    }

    public FloatBuffer(ByteBuffer buffer,int length) {
        super(buffer,length);
    }

    public FloatBuffer(ByteBuffer buffer, int length, int offset) {
        super(buffer, length, offset);
    }

    public FloatBuffer(byte[] data, int length) {
        super(data, length);
    }


    @Override
    public IComplexFloat getComplexFloat(long i) {
        return null;
    }

    @Override
    public IComplexDouble getComplexDouble(long i) {
        return null;
    }

    public FloatBuffer(float[] floats, boolean copy) {
        super(floats, copy);
    }

    public FloatBuffer(float[] data, boolean copy, int offset) {
        super(data, copy, offset);
    }



    @Override
    protected DataBuffer create(long length) {
        return new FloatBuffer(length);
    }


    @Override
    public DataBuffer create(double[] data) {
        return new FloatBuffer(data);
    }

    @Override
    public DataBuffer create(float[] data) {
        return new FloatBuffer(data);
    }

    @Override
    public DataBuffer create(int[] data) {
        return new FloatBuffer(data);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy