Skip to content

Commit 240aee7

Browse files
authored
Merge pull request opentensor#23 from opentensor/min-compute-fix
Update min_compute.yml
2 parents 08d6758 + 6c3a919 commit 240aee7

File tree

1 file changed

+48
-34
lines changed

1 file changed

+48
-34
lines changed

min_compute.yml

+48-34
Original file line numberDiff line numberDiff line change
@@ -14,60 +14,74 @@ compute_spec:
1414
miner:
1515

1616
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)
2022

2123
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
2731

2832
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.)
3237

3338
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
3744

3845
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)
4148

4249
validator:
4350

4451
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)
4857

4958
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
5566

5667
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.)
6072

6173
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
6579

6680
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)
6983

7084
network_spec:
7185
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

Comments
 (0)