Skip to content

Commit

Permalink
Merge pull request #296 from neuralinternet/hotfix/CSN-474-reduce-sco…
Browse files Browse the repository at this point in the history
…re-for-low-tier-GPUs

feat(config.yaml): remove scores for all GPUs except select high-end
  • Loading branch information
thomas-chu123 authored and mo0haned committed Feb 7, 2025
1 parent 4ef646a commit f9ed1d9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions compute/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
import string

# Define the version of the template module.
__version__ = "1.8.0"
__version__ = "1.8.1"
__minimal_miner_version__ = "1.8.0"
__minimal_validator_version__ = "1.8.0"
__minimal_validator_version__ = "1.8.1"

version_split = __version__.split(".")
__version_as_int__ = (100 * int(version_split[0])) + (10 * int(version_split[1])) + (1 * int(version_split[2]))
Expand Down
24 changes: 12 additions & 12 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,18 @@ gpu_performance:
NVIDIA H100 80GB HBM3: 3.30
NVIDIA H100: 2.80
NVIDIA A100-SXM4-80GB: 1.90
NVIDIA A100 80GB PCIe: 1.65
NVIDIA A100-SXM4-40GB: 1.30
NVIDIA L40s: 0.55
NVIDIA RTX 6000 Ada Generation: 0.45
NVIDIA L40: 0.5
NVIDIA RTX A6000: 0.39
NVIDIA RTX 4090: 0.34
NVIDIA A40: 0.20
NVIDIA GeForce RTX 3090: 0.22
NVIDIA L4: 0.22
NVIDIA RTX A5000: 0.18
NVIDIA RTX A4500: 0.17
NVIDIA A100 80GB PCIe: 0
NVIDIA A100-SXM4-40GB: 0
NVIDIA L40s: 0
NVIDIA RTX 6000 Ada Generation: 0
NVIDIA L40: 0
NVIDIA RTX A6000: 0
NVIDIA RTX 4090: 0
NVIDIA A40: 0
NVIDIA GeForce RTX 3090: 0
NVIDIA L4: 0
NVIDIA RTX A5000: 0
NVIDIA RTX A4500: 0

merkle_proof:
miner_script_path: "neurons/Validator/miner_script_m_merkletree.py"
Expand Down

0 comments on commit f9ed1d9

Please sign in to comment.