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

Release/v1.7.5 #272

Merged
merged 2 commits into from
Jan 29, 2025
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
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