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

com.nativelibs4java.opencl.blas.ujmp.DirectNIODenseDoubleMatrix2D Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.nativelibs4java.opencl.blas.ujmp;

import com.nativelibs4java.opencl.blas.CLKernels;
import org.ujmp.core.doublematrix.stub.AbstractDenseDoubleMatrix2D;
import org.ujmp.core.interfaces.Wrapper;

import org.bridj.Pointer;
import static org.bridj.Pointer.*;

/**
 *
 * @author ochafik
 */
public class DirectNIODenseDoubleMatrix2D extends AbstractDenseDoubleMatrix2D {

    /**
	 * 
	 */
	private static final long serialVersionUID = 8936390922363132043L;
	final Pointer data;
    final long rows, columns;

    public DirectNIODenseDoubleMatrix2D(Pointer data, long rows, long columns) {
        this.rows = rows;
        this.columns = columns;
        this.data = data;
    }

    public DirectNIODenseDoubleMatrix2D(long rows, long columns) {
        this(allocateDoubles(rows * columns).order(CLKernels.getInstance().getContext().getKernelsDefaultByteOrder()), rows, columns);
    }

    public DirectNIODenseDoubleMatrix2D(long[] size) {
        this(size[0], size[1]);
        if (size.length != 2)
            throw new IllegalArgumentException("Size is not 2D !");
    }


    public Pointer getData() {
        return data;
    }

    public Pointer getReadableData() {
        return getData();
    }


    public Pointer getWritableData() {
        return getData();
    }

    public long[] getSize() {
        return new long[] { rows, columns };
    }

    public double getDouble(long row, long column) {
        return data.getDoubleAtOffset((row * columns + column) << 3);
    }

    @Override
    public void setDouble(double value, long row, long column) {
        data.setDoubleAtOffset((row * columns + column) << 3, value);
    }

    @Override
    public double getDouble(int row, int column) {
        return getDouble((long)row, column);
    }

    @Override
    public void setDouble(double value, int row, int column) {
        setDouble(value, (long)row, column);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy