Skip to content

Commit

Permalink
Merge pull request #271 from nauttiilus/release/v1.7.5
Browse files Browse the repository at this point in the history
perf: reduce score for low tier GPUs
  • Loading branch information
nauttiilus authored Jan 29, 2025
2 parents 7c3ccf2 + af95b7a commit 84aaea2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 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.7.4"
__version__ = "1.7.5"
__minimal_miner_version__ = "1.6.0"
__minimal_validator_version__ = "1.7.3"
__minimal_validator_version__ = "1.7.5"

version_split = __version__.split(".")
__version_as_int__ = (100 * int(version_split[0])) + (10 * int(version_split[1])) + (1 * int(version_split[2]))
Expand Down
20 changes: 10 additions & 10 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,16 @@ gpu_performance:
NVIDIA A100-SXM4-80GB: 1.90
NVIDIA A100 80GB PCIe: 1.65
NVIDIA A100-SXM4-40GB: 1.30
NVIDIA L40s: 1.10
NVIDIA RTX 6000 Ada Generation: 0.90
NVIDIA L40: 1.0
NVIDIA RTX A6000: 0.78
NVIDIA RTX 4090: 0.68
NVIDIA A40: 0.39
NVIDIA GeForce RTX 3090: 0.43
NVIDIA L4: 0.43
NVIDIA RTX A5000: 0.36
NVIDIA RTX A4500: 0.34
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

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

0 comments on commit 84aaea2

Please sign in to comment.