Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Validator min compute #71

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions min_compute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,20 @@ compute_spec:

gpu:
required: True # Does the application require a GPU?
min_vram: 24 # Minimum GPU VRAM (GB)
recommended_vram: 24 # Recommended GPU VRAM (GB)
min_compute_capability: 6.0 # Minimum CUDA compute capability
recommended_compute_capability: 7.0 # Recommended CUDA compute capability
recommended_gpu: "NVIDIA RTX 4090" # provide a recommended GPU to purchase/rent
min_vram: 33 # Minimum GPU VRAM (GB)
recommended_vram: 48 # Recommended GPU VRAM (GB)
min_compute_capability: 8.6 # Minimum CUDA compute capability
recommended_compute_capability: 8.6 # Recommended CUDA compute capability
recommended_gpu: "NVIDIA A40" # Recommended GPU to purchase/rent
peak_fp16_tensor_tflops: # Peak FP16 tensor TFLOPS (with FP16 accumulate)
min: 149.7
max: 299.4

memory:
min_ram: 32 # Minimum RAM (GB)
min_swap: 4 # Minimum swap space (GB)
recommended_swap: 8 # Recommended swap space (GB)
ram_type: "DDR4" # RAM type (e.g., DDR4, DDR3, etc.)
ram_type: "DDR6" # RAM type (e.g., DDR4, DDR3, etc.)

storage:
min_space: 300 # Minimum free storage space (GB)
Expand Down
2 changes: 1 addition & 1 deletion setup_miner_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ echo "# Default options:
DETECTOR=CAMO # Options: CAMO, UCF, NPR
DETECTOR_CONFIG=camo.yaml # Configurations: camo.yaml, ucf.yaml, npr.yaml
DEVICE=cpu # Options: cpu, cuda
NETUID=34 # Network User ID options: 34, 168

# Subtensor Network Configuration:
NETUID=34 # Network User ID options: 34, 168
SUBTENSOR_NETWORK=finney # Networks: finney, test, local
SUBTENSOR_CHAIN_ENDPOINT=wss://entrypoint-finney.opentensor.ai:443
# Endpoints:
Expand Down
4 changes: 2 additions & 2 deletions setup_validator_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ sudo apt install npm -y
sudo npm install pm2@latest -g

pip install -e .
pip install -r requirements-validator.sh
pip install -r requirements-validator.txt

echo "# Default options:
NETUID=34 # Network User ID options: 34, 168

# Subtensor Network Configuration:
NETUID=34 # Network User ID options: 34, 168
SUBTENSOR_NETWORK=finney # Networks: finney, test, local
SUBTENSOR_CHAIN_ENDPOINT=wss://entrypoint-finney.opentensor.ai:443
# Endpoints:
Expand Down
Loading