@Namespace(value="dnnl") public static enum dnnl.prop_kind extends Enum<dnnl.prop_kind>
| Enum Constant and Description |
|---|
backward
Backward propagation (with respect to all parameters).
|
backward_bias
Backward bias propagation.
|
backward_data
Backward data propagation.
|
backward_weights
Backward weights propagation.
|
forward
Forward data propagation,
alias for #dnnl::prop_kind::forward_training.
|
forward_inference
Forward data propagation (inference mode).
|
forward_scoring
Forward data propagation,
alias for #dnnl::prop_kind::forward_inference.
|
forward_training
Forward data propagation (training mode).
|
undef
Undefined propagation kind.
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
dnnl.prop_kind |
intern() |
String |
toString() |
static dnnl.prop_kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static dnnl.prop_kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final dnnl.prop_kind undef
public static final dnnl.prop_kind forward_training
public static final dnnl.prop_kind forward_inference
public static final dnnl.prop_kind forward_scoring
public static final dnnl.prop_kind forward
public static final dnnl.prop_kind backward
public static final dnnl.prop_kind backward_data
public static final dnnl.prop_kind backward_weights
public static final dnnl.prop_kind backward_bias
public static dnnl.prop_kind[] values()
for (dnnl.prop_kind c : dnnl.prop_kind.values()) System.out.println(c);
public static dnnl.prop_kind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic dnnl.prop_kind intern()
public String toString()
toString in class Enum<dnnl.prop_kind>Copyright © 2020. All rights reserved.