Enum GPUInstruction.GPUINSTRUCTION_TYPE
- java.lang.Object
- 
- java.lang.Enum<GPUInstruction.GPUINSTRUCTION_TYPE>
- 
- org.apache.sysds.runtime.instructions.gpu.GPUInstruction.GPUINSTRUCTION_TYPE
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<GPUInstruction.GPUINSTRUCTION_TYPE>
 - Enclosing class:
- GPUInstruction
 
 public static enum GPUInstruction.GPUINSTRUCTION_TYPE extends Enum<GPUInstruction.GPUINSTRUCTION_TYPE> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AggregateBinaryAggregateUnaryAppendArithmeticBinaryBuiltinBuiltinBinaryBuiltinUnaryDnnMatrixIndexingMatrixReshapeMMTSJRelationalBinaryReorgSpoofFused
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static GPUInstruction.GPUINSTRUCTION_TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static GPUInstruction.GPUINSTRUCTION_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
AggregateUnarypublic static final GPUInstruction.GPUINSTRUCTION_TYPE AggregateUnary 
 - 
AggregateBinarypublic static final GPUInstruction.GPUINSTRUCTION_TYPE AggregateBinary 
 - 
RelationalBinarypublic static final GPUInstruction.GPUINSTRUCTION_TYPE RelationalBinary 
 - 
Dnnpublic static final GPUInstruction.GPUINSTRUCTION_TYPE Dnn 
 - 
MMTSJpublic static final GPUInstruction.GPUINSTRUCTION_TYPE MMTSJ 
 - 
Reorgpublic static final GPUInstruction.GPUINSTRUCTION_TYPE Reorg 
 - 
MatrixReshapepublic static final GPUInstruction.GPUINSTRUCTION_TYPE MatrixReshape 
 - 
Appendpublic static final GPUInstruction.GPUINSTRUCTION_TYPE Append 
 - 
ArithmeticBinarypublic static final GPUInstruction.GPUINSTRUCTION_TYPE ArithmeticBinary 
 - 
BuiltinUnarypublic static final GPUInstruction.GPUINSTRUCTION_TYPE BuiltinUnary 
 - 
BuiltinBinarypublic static final GPUInstruction.GPUINSTRUCTION_TYPE BuiltinBinary 
 - 
Builtinpublic static final GPUInstruction.GPUINSTRUCTION_TYPE Builtin 
 - 
MatrixIndexingpublic static final GPUInstruction.GPUINSTRUCTION_TYPE MatrixIndexing 
 - 
SpoofFusedpublic static final GPUInstruction.GPUINSTRUCTION_TYPE SpoofFused 
 
- 
 - 
Method Detail- 
valuespublic static GPUInstruction.GPUINSTRUCTION_TYPE[] 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 (GPUInstruction.GPUINSTRUCTION_TYPE c : GPUInstruction.GPUINSTRUCTION_TYPE.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static GPUInstruction.GPUINSTRUCTION_TYPE 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
 
 
- 
 
-