@Generated public enum ServedModelInputWorkloadType extends Enum<ServedModelInputWorkloadType>
[GPU types]: https://docs.databricks.com/machine-learning/model-serving/create-manage-serving-endpoints.html#gpu-workload-types
| Enum Constant and Description |
|---|
CPU |
GPU_LARGE |
GPU_MEDIUM |
GPU_SMALL |
MULTIGPU_MEDIUM |
| Modifier and Type | Method and Description |
|---|---|
static ServedModelInputWorkloadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServedModelInputWorkloadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServedModelInputWorkloadType CPU
public static final ServedModelInputWorkloadType GPU_LARGE
public static final ServedModelInputWorkloadType GPU_MEDIUM
public static final ServedModelInputWorkloadType GPU_SMALL
public static final ServedModelInputWorkloadType MULTIGPU_MEDIUM
public static ServedModelInputWorkloadType[] values()
for (ServedModelInputWorkloadType c : ServedModelInputWorkloadType.values()) System.out.println(c);
public static ServedModelInputWorkloadType 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 © 2024. All rights reserved.