@Namespace(value="nvinfer1") public static enum nvinfer.LoopOutput extends Enum<nvinfer.LoopOutput>
| Enum Constant and Description |
|---|
kCONCATENATE
Output value is concatenation of values of tensor for each iteration, in forward order.
|
kLAST_VALUE
Output value is value of tensor for last iteration.
|
kREVERSE
Output value is concatenation of values of tensor for each iteration, in reverse order.
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
nvinfer.LoopOutput |
intern() |
String |
toString() |
static nvinfer.LoopOutput |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static nvinfer.LoopOutput[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final nvinfer.LoopOutput kLAST_VALUE
public static final nvinfer.LoopOutput kCONCATENATE
public static final nvinfer.LoopOutput kREVERSE
public static nvinfer.LoopOutput[] values()
for (nvinfer.LoopOutput c : nvinfer.LoopOutput.values()) System.out.println(c);
public static nvinfer.LoopOutput 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 nvinfer.LoopOutput intern()
public String toString()
toString in class Enum<nvinfer.LoopOutput>Copyright © 2024. All rights reserved.