Class Enter
- java.lang.Object
-
- org.nd4j.autodiff.functions.DifferentialFunction
-
- org.nd4j.linalg.api.ops.DynamicCustomOp
-
- org.nd4j.linalg.api.ops.impl.controlflow.compat.BaseCompatOp
-
- org.nd4j.linalg.api.ops.impl.controlflow.compat.Enter
-
- All Implemented Interfaces:
CustomOp
public class Enter extends BaseCompatOp
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.nd4j.linalg.api.ops.DynamicCustomOp
DynamicCustomOp.DynamicCustomOpsBuilder
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanisConstantstatic StringOP_NAMEWARNING: do not change without changing serialization methods SeeFlatBuffersMapper.getOpNum(String, Type)andDifferentialFunctionClassHolder.customOpClassForHashAndName(long, String)static intOP_NUM-
Fields inherited from class org.nd4j.linalg.api.ops.impl.controlflow.compat.BaseCompatOp
frameName
-
Fields inherited from class org.nd4j.linalg.api.ops.DynamicCustomOp
axis, bArguments, dArguments, iArguments, inplaceCall, inputArguments, outputArguments, outputVariables, sArguments, tArguments
-
Fields inherited from class org.nd4j.autodiff.functions.DifferentialFunction
dimensions, extraArgs, inPlace, ownName, ownNameSetWithDefault, sameDiff, scalarValue
-
-
Constructor Summary
Constructors Constructor Description Enter()Enter(SameDiff sameDiff, String frameName, SDVariable input)Enter(SameDiff sameDiff, String frameName, SDVariable input, boolean isConstant)Enter(SameDiff sameDiff, SDVariable[] inputs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DataType>calculateOutputDataTypes(List<DataType> inputDataTypes)Calculate the data types for the output arrays.voidconfigureFromArguments()This allows a custom op to configure relevant fields from its arguments.intgetNumOutputs()voidinitFromTensorFlow(NodeDef nodeDef, SameDiff initWith, Map<String,AttrValue> attributesForNode, GraphDef graph)Initialize the function from the givenNodeDefStringopName()This method returns op opName as stringOp.TypeopType()The type of the opvoidsetPropertiesForFunction(Map<String,Object> properties)StringtensorflowName()The opName of this function tensorflow-
Methods inherited from class org.nd4j.linalg.api.ops.impl.controlflow.compat.BaseCompatOp
addSArgument, attributeAdaptersForFunction, calculateOutputShape, computeArrays, configureWithSameDiff, getFrameName, mappingsForFunction, propertiesForFunction, setFrameName
-
Methods inherited from class org.nd4j.linalg.api.ops.DynamicCustomOp
addBArgument, addDArgument, addIArgument, addIArgument, addInputArgument, addOutputArgument, addOutputsToOp, addTArgument, assertValidForExecution, bArgs, builder, calculateOutputShape, clearArrays, dArgs, doDiff, generateFake, generateFake, getBArgument, getDescriptor, getIArgument, getInputArgument, getOutputArgument, getSArgument, getTArgument, getValue, iArgs, initFromOnnx, inputArguments, numBArguments, numDArguments, numIArguments, numInputArguments, numOutputArguments, numSArguments, numTArguments, onnxName, opHash, opNum, outputArguments, outputVariables, outputVariables, removeIArgument, removeInputArgument, removeOutputArgument, removeSArgument, removeTArgument, sArgs, setInputArgument, setInputArguments, setOutputArgument, setValueFor, tArgs, toString, wrapFilterNull, wrapOrNull, wrapOrNull
-
Methods inherited from class org.nd4j.autodiff.functions.DifferentialFunction
arg, arg, argNames, args, configFieldName, diff, dup, equals, getBooleanFromProperty, getDoubleValueFromProperty, getIntValueFromProperty, getLongValueFromProperty, getStringFromProperty, hashCode, isConfigProperties, larg, onnxNames, outputs, outputVariable, outputVariablesNames, rarg, replaceArg, setInstanceId, tensorflowNames
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.nd4j.linalg.api.ops.CustomOp
isInplaceCall
-
-
-
-
Field Detail
-
isConstant
protected boolean isConstant
-
OP_NAME
public static final String OP_NAME
WARNING: do not change without changing serialization methods SeeFlatBuffersMapper.getOpNum(String, Type)andDifferentialFunctionClassHolder.customOpClassForHashAndName(long, String)- See Also:
- Constant Field Values
-
OP_NUM
public static final int OP_NUM
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Enter
public Enter()
-
Enter
public Enter(SameDiff sameDiff, SDVariable[] inputs)
-
Enter
public Enter(SameDiff sameDiff, String frameName, SDVariable input)
-
Enter
public Enter(SameDiff sameDiff, String frameName, SDVariable input, boolean isConstant)
-
-
Method Detail
-
opName
public String opName()
Description copied from class:DynamicCustomOpThis method returns op opName as string- Specified by:
opNamein interfaceCustomOp- Overrides:
opNamein classDynamicCustomOp- Returns:
-
tensorflowName
public String tensorflowName()
Description copied from class:DifferentialFunctionThe opName of this function tensorflow- Overrides:
tensorflowNamein classDynamicCustomOp- Returns:
-
opType
public Op.Type opType()
Description copied from class:DifferentialFunctionThe type of the op- Overrides:
opTypein classDynamicCustomOp- Returns:
-
initFromTensorFlow
public void initFromTensorFlow(NodeDef nodeDef, SameDiff initWith, Map<String,AttrValue> attributesForNode, GraphDef graph)
Description copied from class:DifferentialFunctionInitialize the function from the givenNodeDef- Overrides:
initFromTensorFlowin classBaseCompatOp
-
configureFromArguments
public void configureFromArguments()
Description copied from interface:CustomOpThis allows a custom op to configure relevant fields from its arguments. This is needed when ops are created via reflection for things like model import.- Specified by:
configureFromArgumentsin interfaceCustomOp- Overrides:
configureFromArgumentsin classBaseCompatOp
-
setPropertiesForFunction
public void setPropertiesForFunction(Map<String,Object> properties)
- Overrides:
setPropertiesForFunctionin classBaseCompatOp
-
getNumOutputs
public int getNumOutputs()
- Overrides:
getNumOutputsin classDifferentialFunction
-
calculateOutputDataTypes
public List<DataType> calculateOutputDataTypes(List<DataType> inputDataTypes)
Description copied from class:DifferentialFunctionCalculate the data types for the output arrays. Though datatypes can also be inferred fromDifferentialFunction.calculateOutputShape(), this method differs in that it does not require the input arrays to be populated. This is important as it allows us to do greedy datatype inference for the entire net - even if arrays are not available.- Overrides:
calculateOutputDataTypesin classDifferentialFunction- Parameters:
inputDataTypes- The data types of the inputs- Returns:
- The data types of the outputs
-
-