Enum Class LlamaNumaStrategy

java.lang.Object
java.lang.Enum<LlamaNumaStrategy>
chat.octet.model.enums.LlamaNumaStrategy
All Implemented Interfaces:
Serializable, Comparable<LlamaNumaStrategy>, java.lang.constant.Constable

public enum LlamaNumaStrategy extends Enum<LlamaNumaStrategy>
Llama numa strategy define
Author:
William
  • Enum Constant Details

    • NUMA_STRATEGY_DISABLED

      public static final LlamaNumaStrategy NUMA_STRATEGY_DISABLED
      Disabled strategy.
    • NUMA_STRATEGY_DISTRIBUTE

      public static final LlamaNumaStrategy NUMA_STRATEGY_DISTRIBUTE
      Distribute strategy.
    • NUMA_STRATEGY_ISOLATE

      public static final LlamaNumaStrategy NUMA_STRATEGY_ISOLATE
      Isolate strategy.
    • NUMA_STRATEGY_NUMACTL

      public static final LlamaNumaStrategy NUMA_STRATEGY_NUMACTL
      Numa control strategy.
    • NUMA_STRATEGY_MIRROR

      public static final LlamaNumaStrategy NUMA_STRATEGY_MIRROR
      Mirror strategy.
    • NUMA_STRATEGY_COUNT

      public static final LlamaNumaStrategy NUMA_STRATEGY_COUNT
      Count strategy.
  • Method Details

    • values

      public static LlamaNumaStrategy[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LlamaNumaStrategy valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • valueOfType

      public static LlamaNumaStrategy valueOfType(int type)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<LlamaNumaStrategy>