Skip to content

Commit

Permalink
Merge pull request #1216 from FedML-AI/cheetah-dev
Browse files Browse the repository at this point in the history
[CoreEngine] change the field name to correct value when reporting the computing cost.
  • Loading branch information
fedml-alex authored Aug 17, 2023
2 parents 931b7cd + 7dda5e9 commit 107479d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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.8a19"
__version__ = "0.8.8a20"


def init(args=None):
Expand Down
2 changes: 1 addition & 1 deletion python/fedml/core/mlops/mlops_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ def report_edge_job_computing_cost(self, job_id, edge_id,
msg = {"edge_id": edge_id, "job_id": job_id,
"computing_started_time": computing_started_time,
"computing_ended_time": computing_ended_time,
"duration": duration, "user_id": user_id, "apk_key": api_key}
"duration": duration, "user_id": user_id, "api_key": api_key}
message_json = json.dumps(msg)
self.messenger.send_message_json(topic_name, message_json)
# logging.info("report_job_computing_cost. message_json = %s" % message_json)
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def finalize_options(self):

setup(
name="fedml",
version="0.8.8a19",
version="0.8.8a20",
author="FedML Team",
author_email="[email protected]",
description="A research and production integrated edge-cloud library for "
Expand Down

0 comments on commit 107479d

Please sign in to comment.