mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-18 18:46:12 +08:00
10 lines
191 B
Python
10 lines
191 B
Python
# constants for the levels of the compilation process
|
|
|
|
|
|
class CompilationLevel:
|
|
NO_COMPILATION = 0
|
|
DYNAMO_AS_IS = 1
|
|
DYNAMO_ONCE = 2
|
|
INDUCTOR = 3
|
|
INDUCTOR_MAX_AUTOTUNE = 4
|