meaculpitt commited on
Commit
308aea6
·
verified ·
1 Parent(s): 70e589d

chute_config: trim exclude to 4 items (Chutes max=5); rely on max_hourly_price for cost filtering

Browse files
Files changed (1) hide show
  1. chute_config.yml +8 -24
chute_config.yml CHANGED
@@ -7,31 +7,15 @@ Image:
7
  NodeSelector:
8
  gpu_count: 1
9
  min_vram_gb_per_gpu: 16
10
- # Exclude all valid Chutes GPU identifiers EXCEPT 3090 and 4090
11
- # (the cheapest consumer GPUs). List verified against
12
- # https://api.chutes.ai/nodes/ on 2026-04-14.
 
13
  exclude:
14
- - "5090"
15
- - "a100"
16
- - "a100_40gb"
17
- - "a100_40gb_sxm"
18
- - "a100_sxm"
19
- - "a40"
20
- - "a4000"
21
- - "a5000"
22
- - "a6000"
23
- - "a6000_ada"
24
- - "b200"
25
- - "b300"
26
- - "h100"
27
- - "h100_nvl"
28
- - "h100_sxm"
29
- - "h20"
30
- - "h200"
31
- - "l4"
32
- - "l40"
33
- - "l40s"
34
- - "pro_6000"
35
 
36
  Chute:
37
  timeout_seconds: 300
 
7
  NodeSelector:
8
  gpu_count: 1
9
  min_vram_gb_per_gpu: 16
10
+ # Chutes caps exclude list at 5 items. max_hourly_price below handles
11
+ # cost filtering (blocks anything >$0.50/hr); this list handles
12
+ # compatibility-only concerns. Pattern copied from known-working
13
+ # person/vehicle production chute (VALIDATION_GUIDE reference).
14
  exclude:
15
+ - "5090" # newest Blackwell consumer; sm120 compat unverified
16
+ - "b200" # Blackwell data center; expensive + sm100
17
+ - "h200" # Hopper; very expensive
18
+ - "mi300x" # AMD; different runtime stack
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  Chute:
21
  timeout_seconds: 300