Enum IDagLinearizerFactory.DagLinearizer
- java.lang.Object
-
- java.lang.Enum<IDagLinearizerFactory.DagLinearizer>
-
- org.apache.sysds.lops.compile.linearization.IDagLinearizerFactory.DagLinearizer
-
- All Implemented Interfaces:
Serializable
,Comparable<IDagLinearizerFactory.DagLinearizer>
- Enclosing class:
- IDagLinearizerFactory
public static enum IDagLinearizerFactory.DagLinearizer extends Enum<IDagLinearizerFactory.DagLinearizer>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTO
BREADTH_FIRST
DEPTH_FIRST
MAX_PARALLELIZE
MIN_INTERMEDIATE
PIPELINE_DEPTH_FIRST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IDagLinearizerFactory.DagLinearizer
valueOf(String name)
Returns the enum constant of this type with the specified name.static IDagLinearizerFactory.DagLinearizer[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEPTH_FIRST
public static final IDagLinearizerFactory.DagLinearizer DEPTH_FIRST
-
BREADTH_FIRST
public static final IDagLinearizerFactory.DagLinearizer BREADTH_FIRST
-
MIN_INTERMEDIATE
public static final IDagLinearizerFactory.DagLinearizer MIN_INTERMEDIATE
-
MAX_PARALLELIZE
public static final IDagLinearizerFactory.DagLinearizer MAX_PARALLELIZE
-
AUTO
public static final IDagLinearizerFactory.DagLinearizer AUTO
-
PIPELINE_DEPTH_FIRST
public static final IDagLinearizerFactory.DagLinearizer PIPELINE_DEPTH_FIRST
-
-
Method Detail
-
values
public static IDagLinearizerFactory.DagLinearizer[] 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 (IDagLinearizerFactory.DagLinearizer c : IDagLinearizerFactory.DagLinearizer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IDagLinearizerFactory.DagLinearizer 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 nameNullPointerException
- if the argument is null
-
-