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

org.nd4j.linalg.api.shape.loop.three.LoopFunction3 Maven / Gradle / Ivy

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

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

/**
 * Used for raw iteration in loops
 *
 * @author Adam Gibson
 */
public interface LoopFunction3 {
    /**
     * 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, RawArrayIterationInformation3 info, DataBuffer a, int aOffset, DataBuffer b, int bOffset,
                    DataBuffer c, int cOffset);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy