Package org.apache.sysds.common
Enum Types.OpOpDnn
- java.lang.Object
- 
- java.lang.Enum<Types.OpOpDnn>
- 
- org.apache.sysds.common.Types.OpOpDnn
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Types.OpOpDnn>
 - Enclosing class:
- Types
 
 public static enum Types.OpOpDnn extends Enum<Types.OpOpDnn> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AVG_POOLAVG_POOL_BACKWARDBATCH_NORM2D_TESTBIASADDBIASMULTCHANNEL_SUMSCONV2DCONV2D_BACKWARD_DATACONV2D_BACKWARD_FILTERCONV2D_BIAS_ADDMAX_POOLMAX_POOL_BACKWARDRELU_BACKWARDRELU_MAX_POOLRELU_MAX_POOL_BACKWARDUPDATE_NESTEROV_X
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Types.OpOpDnnvalueOf(String name)Returns the enum constant of this type with the specified name.static Types.OpOpDnn[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
MAX_POOLpublic static final Types.OpOpDnn MAX_POOL 
 - 
MAX_POOL_BACKWARDpublic static final Types.OpOpDnn MAX_POOL_BACKWARD 
 - 
AVG_POOLpublic static final Types.OpOpDnn AVG_POOL 
 - 
AVG_POOL_BACKWARDpublic static final Types.OpOpDnn AVG_POOL_BACKWARD 
 - 
CONV2Dpublic static final Types.OpOpDnn CONV2D 
 - 
CONV2D_BACKWARD_FILTERpublic static final Types.OpOpDnn CONV2D_BACKWARD_FILTER 
 - 
CONV2D_BACKWARD_DATApublic static final Types.OpOpDnn CONV2D_BACKWARD_DATA 
 - 
BIASADDpublic static final Types.OpOpDnn BIASADD 
 - 
BIASMULTpublic static final Types.OpOpDnn BIASMULT 
 - 
BATCH_NORM2D_TESTpublic static final Types.OpOpDnn BATCH_NORM2D_TEST 
 - 
CHANNEL_SUMSpublic static final Types.OpOpDnn CHANNEL_SUMS 
 - 
UPDATE_NESTEROV_Xpublic static final Types.OpOpDnn UPDATE_NESTEROV_X 
 - 
CONV2D_BIAS_ADDpublic static final Types.OpOpDnn CONV2D_BIAS_ADD 
 - 
RELU_MAX_POOLpublic static final Types.OpOpDnn RELU_MAX_POOL 
 - 
RELU_MAX_POOL_BACKWARDpublic static final Types.OpOpDnn RELU_MAX_POOL_BACKWARD 
 - 
RELU_BACKWARDpublic static final Types.OpOpDnn RELU_BACKWARD 
 
- 
 - 
Method Detail- 
valuespublic static Types.OpOpDnn[] 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 (Types.OpOpDnn c : Types.OpOpDnn.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Types.OpOpDnn 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
 
 
- 
 
-