Use kraken2-compatible chute config
Browse files- chute_config.yml +6 -12
chute_config.yml
CHANGED
|
@@ -2,24 +2,18 @@ Image:
|
|
| 2 |
from_base: parachutes/python:3.12
|
| 3 |
run_command:
|
| 4 |
- pip install --upgrade setuptools wheel
|
| 5 |
-
- pip install 'numpy>=1.23' 'onnxruntime-gpu>=1.16' 'opencv-python>=4.7' 'pillow>=9.5' 'huggingface_hub>=0.19.4' 'pydantic>=2.0' 'pyyaml>=6.0' 'aiohttp>=3.9'
|
| 6 |
-
- pip install torch
|
| 7 |
|
| 8 |
NodeSelector:
|
| 9 |
gpu_count: 1
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
exclude:
|
| 14 |
-
- "5090"
|
| 15 |
-
- b200
|
| 16 |
-
- h200
|
| 17 |
-
- a100
|
| 18 |
-
- mi300x
|
| 19 |
|
| 20 |
Chute:
|
|
|
|
| 21 |
timeout_seconds: 900
|
| 22 |
concurrency: 4
|
| 23 |
max_instances: 5
|
| 24 |
scaling_threshold: 0.5
|
| 25 |
-
shutdown_after_seconds: 288000
|
|
|
|
| 2 |
from_base: parachutes/python:3.12
|
| 3 |
run_command:
|
| 4 |
- pip install --upgrade setuptools wheel
|
| 5 |
+
- pip install 'numpy>=1.23' 'onnxruntime-gpu[cuda,cudnn]>=1.16' 'opencv-python>=4.7' 'pillow>=9.5' 'huggingface_hub>=0.19.4' 'pydantic>=2.0' 'pyyaml>=6.0' 'aiohttp>=3.9'
|
| 6 |
+
- pip install torch torchvision
|
| 7 |
|
| 8 |
NodeSelector:
|
| 9 |
gpu_count: 1
|
| 10 |
+
include:
|
| 11 |
+
- pro_6000
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
Chute:
|
| 14 |
+
tee: true
|
| 15 |
timeout_seconds: 900
|
| 16 |
concurrency: 4
|
| 17 |
max_instances: 5
|
| 18 |
scaling_threshold: 0.5
|
| 19 |
+
shutdown_after_seconds: 288000
|