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

org.nd4j.autodiff.samediff.internal.SameDiffOp Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.nd4j.autodiff.samediff.internal;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.nd4j.autodiff.functions.DifferentialFunction;

import java.util.List;

@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class SameDiffOp {
    protected String name;
    protected DifferentialFunction op;	//Actual op (note: should be mutable: i.e., cloneable, no arrays set)
    protected List inputsToOp;		//Name of SDVariables as input
    protected List outputsOfOp;	    //Name of SDVariables as output
    protected List controlDeps;	    //Name of SDVariables as control dependencies (not data inputs, but need to be available before exec)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy