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

chute_config: exclude list cleaned up — only valid Chutes GPU identifiers, allow 3090/4090 only

Browse files
Files changed (1) hide show
  1. chute_config.yml +15 -26
chute_config.yml CHANGED
@@ -7,42 +7,31 @@ Image:
7
  NodeSelector:
8
  gpu_count: 1
9
  min_vram_gb_per_gpu: 16
10
- # Restrict to 4090 / 3090 only. Chutes' include-list rejects consumer-only
11
- # lists (M32 in MISTAKES.md), so exclude everything else. All values
12
- # MUST be quoted — NodeSelector.exclude expects list of STRINGS and
13
- # bare "5090" parses as int.
14
  exclude:
15
  - "5090"
16
- - "5080"
 
 
 
 
 
 
 
 
17
  - "b200"
18
- - "b100"
19
  - "h100"
20
- - "h100_sxm"
21
  - "h100_nvl"
 
 
22
  - "h200"
23
- - "a100"
24
- - "a100_40gb"
25
- - "a100_80gb"
26
- - "a6000"
27
- - "a40"
28
- - "a10"
29
- - "a10g"
30
  - "l4"
31
  - "l40"
32
  - "l40s"
33
  - "pro_6000"
34
- - "rtx_pro_6000"
35
- - "rtx_pro_4000"
36
- - "rtx_pro_4500"
37
- - "rtx_pro_5000"
38
- - "mi300x"
39
- - "mi300a"
40
- - "mi250x"
41
- - "mi210"
42
- - "v100"
43
- - "t4"
44
- - "p100"
45
- - "k80"
46
 
47
  Chute:
48
  timeout_seconds: 300
 
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