Skip to content

Commit 7de2ead

Browse files
authored
Merge pull request #126 from mlcommons/dev
Sync Dev
2 parents baaf9a5 + d136ece commit 7de2ead

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

.github/workflows/test-mlperf-inference-abtf-poc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install cm4mlops on Windows
5555
if: matrix.os == 'windows-latest'
5656
run: |
57-
$env:CM_PULL_DEFAULT_MLOPS_REPO = "no"; pip install cm4mlops
57+
$env:CM_PULL_DEFAULT_MLOPS_REPO = "no"; $env:PYTHONUTF8 = "1"; pip install cm4mlops
5858
- name: Install dependencies on Unix Platforms
5959
if: matrix.os != 'windows-latest'
6060
run: |

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Welcome to the **MLPerf Automations and Scripts** repository! This repository pr
99

1010
The automations build upon and extend the powerful [Collective Mind (CM) script automations](https://github.com/mlcommons/cm4mlops/tree/main/automation/script) to streamline benchmarking and workflow processes.
1111

12+
1213
---
1314

1415
## 🚀 Key Features
@@ -29,6 +30,7 @@ The **Collective Mind (CM)** framework is a Python-based package offering both C
2930

3031
Learn more about CM in the [CM4MLOps documentation](https://github.com/mlcommons/cm4mlops).
3132

33+
3234
---
3335

3436
## 🤝 Contributing

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.21
1+
0.6.25

git_commit_hash.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e686cec959f5cf999f8778dc1c3b8a9af04eb823
1+
25061896e4bd1b67f69cecf8aeea32040171b095

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[build-system]
2-
requires = ["setuptools>=60", "wheel", "cmind @ git+https://git@github.com/mlcommons/ck.git@mlperf-inference#egg=cmind&subdirectory=cm"]
2+
requires = ["setuptools>=60", "wheel", "cmind @ git+https://git@github.com/gateoverflow/cm.git@mlperf-inference#egg=cmind&subdirectory=cm"]

script/push-mlperf-inference-results-to-github/customize.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ def preprocess(i):
3737
if env.get('CM_GITHUB_PAT', '') != '':
3838
token = env['CM_GITHUB_PAT']
3939
env['CM_GIT_PUSH_CMD'] = f"""git push https://x-access-token:{env['CM_GITHUB_PAT']}@{p.host}/{p.owner}/{p.repo}"""
40+
else:
41+
env['CM_GIT_PUSH_CMD'] = "git push"
42+
4043

4144
return {'return': 0}
4245

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def get_sys_platform(self):
171171

172172
def read_file(file_name, default=""):
173173
if os.path.isfile(file_name):
174-
with open(file_name, "r") as f:
174+
with open(file_name, "r", encoding="utf-8") as f:
175175
return f.read().strip()
176176
return default
177177

@@ -192,7 +192,7 @@ def get_commit_hash():
192192
version=version_,
193193
long_description=long_description,
194194
long_description_content_type='text/markdown',
195-
url="https://github.com/mlcommons/cm4mlops",
195+
url="https://github.com/mlcommons/mlperf-automations",
196196
packages=[],
197197
install_requires=[
198198
"setuptools>=60",

0 commit comments

Comments
 (0)