"vscode:/vscode.git/clone" did not exist on "cbb2f59cc853731f5607ac0130bb6cdebfdc89c7"
levels.py 162 Bytes
Newer Older
1
2
3
4
5
6
7
# constants for the levels of the compilation process


class CompilationLevel:
    NO_COMPILATION = 0
    DYNAMO_AS_IS = 1
    DYNAMO_ONCE = 2
8
    PIECEWISE = 3