Skip to content

Commit

Permalink
[CoreEngine] get the gpu provider which will be showed to users when …
Browse files Browse the repository at this point in the history
…launching jobs.
  • Loading branch information
fedml-alex committed Aug 24, 2023
1 parent 23d7545 commit 5bb1e82
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion devops/dockerfile/device-image/Dockerfile-Dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG VERSION=dev
ARG IS_BUILDING_GPU_IMAGE=0
ARG BASE_IMAGE=public.ecr.aws/x6k8q1x9/fedml-device-image:base
ARG BASE_IMAGE=fedml/fedml-device-image:base
FROM ${BASE_IMAGE}

ADD ./devops/scripts/runner.sh ./fedml/runner.sh
Expand Down
2 changes: 1 addition & 1 deletion python/fedml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
_global_training_type = None
_global_comm_backend = None

__version__ = "0.8.8a43"
__version__ = "0.8.8a44"


def init(args=None):
Expand Down
2 changes: 1 addition & 1 deletion python/fedml/cli/scheduler/job_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def __init__(self, gpu_device_json):
self.gpu_count = gpu_device_json["got_gpu_count"]
self.gpu_name = gpu_device_json["gpu_name"]
self.gpu_instance = self.gpu_name
self.gpu_provider = "FedML"
self.gpu_provider = gpu_device_json["gpu_provider"]


class FedMLJobModelList(object):
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def finalize_options(self):

setup(
name="fedml",
version="0.8.8a43",
version="0.8.8a44",
author="FedML Team",
author_email="ch@fedml.ai",
description="A research and production integrated edge-cloud library for "
Expand Down

0 comments on commit 5bb1e82

Please sign in to comment.