Enum CNodeNary.NaryType
- java.lang.Object
- 
- java.lang.Enum<CNodeNary.NaryType>
- 
- org.apache.sysds.hops.codegen.cplan.CNodeNary.NaryType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<CNodeNary.NaryType>
 - Enclosing class:
- CNodeNary
 
 public static enum CNodeNary.NaryType extends Enum<CNodeNary.NaryType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description VECT_AVG_POOLVECT_CBINDVECT_CONV2DMMVECT_IM2COLVECT_MAX_POOL
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static booleancontains(String value)StringgetTemplate(boolean sparseGen, long len, ArrayList<CNode> inputs, SpoofCompiler.GeneratorAPI api)booleanisVectorPrimitive()static CNodeNary.NaryTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CNodeNary.NaryType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
VECT_CBINDpublic static final CNodeNary.NaryType VECT_CBIND 
 - 
VECT_MAX_POOLpublic static final CNodeNary.NaryType VECT_MAX_POOL 
 - 
VECT_AVG_POOLpublic static final CNodeNary.NaryType VECT_AVG_POOL 
 - 
VECT_IM2COLpublic static final CNodeNary.NaryType VECT_IM2COL 
 - 
VECT_CONV2DMMpublic static final CNodeNary.NaryType VECT_CONV2DMM 
 
- 
 - 
Method Detail- 
valuespublic static CNodeNary.NaryType[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CNodeNary.NaryType c : CNodeNary.NaryType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CNodeNary.NaryType valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
containspublic static boolean contains(String value) 
 - 
getTemplatepublic String getTemplate(boolean sparseGen, long len, ArrayList<CNode> inputs, SpoofCompiler.GeneratorAPI api) 
 - 
isVectorPrimitivepublic boolean isVectorPrimitive() 
 
- 
 
-