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