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

org.nd4j.linalg.api.shape.loop.four.LoopFunction4 Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.nd4j.linalg.api.shape.loop.four;

import org.nd4j.linalg.api.buffer.DataBuffer;

/**
 * Used for raw iteration in loops
 *
 * @author Adam Gibson
 */
public interface LoopFunction4 {
    /**
     * Perform an operation
     * given 2 buffers
     * @param a the first buffer
     * @param aOffset the first buffer offset
     * @param b the second buffer
     * @param bOffset the second buffer offset
     */
    void perform(int i, RawArrayIterationInformation4 info, DataBuffer a, int aOffset, DataBuffer b, int bOffset,
                    DataBuffer c, int cOffset, DataBuffer d, int dOffset);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy