File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 22
33
44class Runtime (Enum ):
5+ # CPU/General purpose runtimes
56 MICRO = "micro"
67 TINY = "tiny"
78 SMALL = "small"
@@ -11,18 +12,24 @@ class Runtime(Enum):
1112 XX_LARGE = "2x-large"
1213 XXXX_LARGE = "4x-large"
1314
14- # HIMEM
15+ # HIMEM/Memory-optimized runtimes
1516 MEDIUM_HIMEM = "medium-himem"
1617 LARGE_HIMEM = "large-himem"
1718 X_LARGE_HIMEM = "x-large-himem"
1819 XX_LARGE_HIMEM = "2x-large-himem"
1920 XXXX_LARGE_HIMEM = "4x-large-himem"
2021
21- # GPU
22+ # HICPU/Compute-optimized runtimes
23+ X_LARGE_HICPU = "x-large-hicpu"
24+ XX_LARGE_HICPU = "2x-large-hicpu"
25+
26+ # GPU-accelerated runtimes
2227 MICRO_A10_GPU = "micro-a10-gpu"
2328 TINY_A10_GPU = "tiny-a10-gpu"
2429 SMALL_A10_GPU = "small-a10-gpu"
2530 MEDIUM_A10_GPU = "medium-a10-gpu"
31+ LARGE_A10_GPU = "large-a10-gpu"
32+ X_LARGE_A10_GPU = "x-large-a10-gpu"
2633
2734
2835_NAME_TO_ENUM = {runtime .value : runtime for runtime in Runtime }
You can’t perform that action at this time.
0 commit comments