Skip to content

Commit

Permalink
Merge pull request #179 from Datura-ai/main
Browse files Browse the repository at this point in the history
deploy validator
  • Loading branch information
pyon12 authored Jan 10, 2025
2 parents c8e74c6 + d1810dd commit 5b46325
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion neurons/validators/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ RUN echo "export PYTHONPATH=$PYTHONPATH" >> ~/.bash_profile
COPY --from=base-image /root/app/ /root/app/
COPY --from=base-image /opt/pypackages/ /opt/pypackages/

LABEL version="3.3.25"
LABEL version="3.3.26"

CMD ["bash", "run.sh"]
2 changes: 1 addition & 1 deletion neurons/validators/Dockerfile.runner
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WORKDIR /root/validator
COPY docker-compose.app.yml docker-compose.yml
COPY entrypoint.sh /entrypoint.sh

LABEL version="3.3.25"
LABEL version="3.3.26"

RUN chmod u+x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
2 changes: 1 addition & 1 deletion neurons/validators/src/services/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

MAX_GPU_COUNT = 14

UNRENTED_MULTIPLIER = 0.9
UNRENTED_MULTIPLIER = 1

GPU_UTILIZATION_LIMIT = 1
GPU_MEMORY_UTILIZATION_LIMIT = 1
Expand Down
1 change: 1 addition & 0 deletions neurons/validators/src/services/task_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -878,6 +878,7 @@ async def create_task(
"download_speed": download_speed,
"gpu_model": gpu_model,
"gpu_count": gpu_count,
"unrented_multiplier": UNRENTED_MULTIPLIER,
}
),
)
Expand Down

0 comments on commit 5b46325

Please sign in to comment.