public static enum ConvolutionLayer.BwdFilterAlgo extends Enum<ConvolutionLayer.BwdFilterAlgo>
ConvolutionLayer.AlgoMode is set to "USER_SPECIFIED".
Note: Currently only supported with cuDNN.| Enum Constant and Description |
|---|
ALGO_0 |
ALGO_1 |
ALGO_3 |
COUNT |
FFT |
FFT_TILING |
WINOGRAD |
WINOGRAD_NONFUSED |
| Modifier and Type | Method and Description |
|---|---|
static ConvolutionLayer.BwdFilterAlgo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConvolutionLayer.BwdFilterAlgo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConvolutionLayer.BwdFilterAlgo ALGO_0
public static final ConvolutionLayer.BwdFilterAlgo ALGO_1
public static final ConvolutionLayer.BwdFilterAlgo FFT
public static final ConvolutionLayer.BwdFilterAlgo ALGO_3
public static final ConvolutionLayer.BwdFilterAlgo WINOGRAD
public static final ConvolutionLayer.BwdFilterAlgo WINOGRAD_NONFUSED
public static final ConvolutionLayer.BwdFilterAlgo FFT_TILING
public static final ConvolutionLayer.BwdFilterAlgo COUNT
public static ConvolutionLayer.BwdFilterAlgo[] values()
for (ConvolutionLayer.BwdFilterAlgo c : ConvolutionLayer.BwdFilterAlgo.values()) System.out.println(c);
public static ConvolutionLayer.BwdFilterAlgo 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 nullCopyright © 2018. All rights reserved.