@@ -14,60 +14,74 @@ compute_spec:
14
14
miner :
15
15
16
16
cpu :
17
- min_cores : 4 # Minimum number of CPU cores
18
- min_speed : 2.5GHz # Minimum speed per core
19
- architecture : x86_64 # Architecture type (e.g., x86_64, arm64)
17
+ min_cores : 4 # Minimum number of CPU cores
18
+ min_speed : 2.5 # Minimum speed per core (GHz)
19
+ recommended_cores : 8 # Recommended number of CPU cores
20
+ recommended_speed : 3.5 # Recommended speed per core (GHz)
21
+ architecture : " x86_64" # Architecture type (e.g., x86_64, arm64)
20
22
21
23
gpu :
22
- required : true # Does the application require a GPU?
23
- min_vram : 8GB # Minimum GPU VRAM
24
- cuda_cores : 1024 # Minimum number of CUDA cores (if applicable)
25
- min_compute_capability : 6.0 # Minimum CUDA compute capability
26
- recommended_gpu : " NVIDIA A100" # provide a recommended GPU to purchase/rent
24
+ required : True # Does the application require a GPU?
25
+ min_vram : 8 # Minimum GPU VRAM (GB)
26
+ recommended_vram : 24 # Recommended GPU VRAM (GB)
27
+ cuda_cores : 1024 # Minimum number of CUDA cores (if applicable)
28
+ min_compute_capability : 6.0 # Minimum CUDA compute capability
29
+ recommended_compute_capability : 7.0 # Recommended CUDA compute capability
30
+ recommended_gpu : " NVIDIA A100" # provide a recommended GPU to purchase/rent
27
31
28
32
memory :
29
- min_ram : 16GB # Minimum RAM
30
- min_swap : 4GB # Minimum swap space
31
- ram_type : " DDR4" # RAM type (e.g., DDR4, DDR3, etc.)
33
+ min_ram : 16 # Minimum RAM (GB)
34
+ min_swap : 4 # Minimum swap space (GB)
35
+ recommended_swap : 8 # Recommended swap space (GB)
36
+ ram_type : " DDR4" # RAM type (e.g., DDR4, DDR3, etc.)
32
37
33
38
storage :
34
- min_space : 100GB # Minimum free storage space
35
- type : SSD # Preferred storage type (e.g., SSD, HDD)
36
- iops : 1000 # Minimum I/O operations per second (if applicable)
39
+ min_space : 10 # Minimum free storage space (GB)
40
+ recommended_space : 100 # Recommended free storage space (GB)
41
+ type : " SSD" # Preferred storage type (e.g., SSD, HDD)
42
+ min_iops : 1000 # Minimum I/O operations per second (if applicable)
43
+ recommended_iops : 5000 # Recommended I/O operations per second
37
44
38
45
os :
39
- name : Ubuntu # Name of the preferred operating system(s)
40
- version : " 20.04" # Version of the preferred operating system(s)
46
+ name : " Ubuntu" # Name of the preferred operating system(s)
47
+ version : 20.04 # Version of the preferred operating system(s)
41
48
42
49
validator :
43
50
44
51
cpu :
45
- min_cores : 4 # Minimum number of CPU cores
46
- min_speed : 2.5GHz # Minimum speed per core
47
- architecture : x86_64 # Architecture type (e.g., x86_64, arm64)
52
+ min_cores : 4 # Minimum number of CPU cores
53
+ min_speed : 2.5 # Minimum speed per core (GHz)
54
+ recommended_cores : 8 # Recommended number of CPU cores
55
+ recommended_speed : 3.5 # Recommended speed per core (GHz)
56
+ architecture : " x86_64" # Architecture type (e.g., x86_64, arm64)
48
57
49
58
gpu :
50
- required : true # Does the application require a GPU?
51
- min_vram : 8GB # Minimum GPU VRAM
52
- cuda_cores : 1024 # Minimum number of CUDA cores (if applicable)
53
- min_compute_capability : 6.0 # Minimum CUDA compute capability
54
- recommended_gpu : " NVIDIA A100" # provide a recommended GPU to purchase/rent
59
+ required : True # Does the application require a GPU?
60
+ min_vram : 8 # Minimum GPU VRAM (GB)
61
+ recommended_vram : 24 # Recommended GPU VRAM (GB)
62
+ cuda_cores : 1024 # Minimum number of CUDA cores (if applicable)
63
+ min_compute_capability : 6.0 # Minimum CUDA compute capability
64
+ recommended_compute_capability : 7.0 # Recommended CUDA compute capability
65
+ recommended_gpu : " NVIDIA A100" # provide a recommended GPU to purchase/rent
55
66
56
67
memory :
57
- min_ram : 16GB # Minimum RAM
58
- min_swap : 4GB # Minimum swap space
59
- ram_type : " DDR4" # RAM type (e.g., DDR4, DDR3, etc.)
68
+ min_ram : 16 # Minimum RAM (GB)
69
+ min_swap : 4 # Minimum swap space (GB)
70
+ recommended_swap : 8 # Recommended swap space (GB)
71
+ ram_type : " DDR4" # RAM type (e.g., DDR4, DDR3, etc.)
60
72
61
73
storage :
62
- min_space : 100GB # Minimum free storage space
63
- type : SSD # Preferred storage type (e.g., SSD, HDD)
64
- iops : 1000 # Minimum I/O operations per second (if applicable)
74
+ min_space : 10 # Minimum free storage space (GB)
75
+ recommended_space : 100 # Recommended free storage space (GB)
76
+ type : " SSD" # Preferred storage type (e.g., SSD, HDD)
77
+ min_iops : 1000 # Minimum I/O operations per second (if applicable)
78
+ recommended_iops : 5000 # Recommended I/O operations per second
65
79
66
80
os :
67
- name : Ubuntu # Name of the preferred operating system(s)
68
- version : " >= 20.04" # Version of the preferred operating system(s)
81
+ name : " Ubuntu" # Name of the preferred operating system(s)
82
+ version : 20.04 # Version of the preferred operating system(s)
69
83
70
84
network_spec :
71
85
bandwidth :
72
- download : " >=100Mbps " # Minimum download bandwidth
73
- upload : " >=20Mbps " # Minimum upload bandwidth
86
+ download : 100 # Minimum download bandwidth (Mbps)
87
+ upload : 20 # Minimum upload bandwidth (Mbps)
0 commit comments