Package org.apache.sysds.common
Enum Class Types.ExecType
- All Implemented Interfaces:
Serializable,Comparable<Types.ExecType>,Constable
- Enclosing interface:
- Types
Execution type of individual operations.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionControl Program: This ExecType indicate that the operation should be executed in the controller.Control Program File: This ExecType indicate that the operation should be executed in the controller, and the result be spilled to disk because the intermediate is potentially bigger than memory.FED: indicate that the instruction should be executed as a Federated instructionGPU ExecType indicate that the execution should be performed on a GPUinvalid is used for debugging or if it is undecided where the current instruction should be executedOut of Core: indicate that the operation should be executed out of core.Spark ExecType indicate that the execution should be performed as a Spark Instruction -
Method Summary
Modifier and TypeMethodDescriptionstatic Types.ExecTypeReturns the enum constant of this class with the specified name.static Types.ExecType[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
CP
Control Program: This ExecType indicate that the operation should be executed in the controller. -
CP_FILE
Control Program File: This ExecType indicate that the operation should be executed in the controller, and the result be spilled to disk because the intermediate is potentially bigger than memory. -
SPARK
Spark ExecType indicate that the execution should be performed as a Spark Instruction -
GPU
GPU ExecType indicate that the execution should be performed on a GPU -
FED
FED: indicate that the instruction should be executed as a Federated instruction -
OOC
Out of Core: indicate that the operation should be executed out of core. -
INVALID
invalid is used for debugging or if it is undecided where the current instruction should be executed
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-