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