public static enum ConvolutionLayer.AlgoMode extends java.lang.Enum<ConvolutionLayer.AlgoMode>
| Enum Constant and Description |
|---|
NO_WORKSPACE |
PREFER_FASTEST |
| Modifier and Type | Method and Description |
|---|---|
static ConvolutionLayer.AlgoMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConvolutionLayer.AlgoMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConvolutionLayer.AlgoMode NO_WORKSPACE
public static final ConvolutionLayer.AlgoMode PREFER_FASTEST
public static ConvolutionLayer.AlgoMode[] values()
for (ConvolutionLayer.AlgoMode c : ConvolutionLayer.AlgoMode.values()) System.out.println(c);
public static ConvolutionLayer.AlgoMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null