8000 CM/CMX v3.2.8: fixed a few tests by gfursin · Pull Request #1340 · mlcommons/ck · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

CM/CMX v3.2.8: fixed a few tests #1340

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

Merged
merged 3 commits into from
Oct 27, 2024
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: 4 additions & 0 deletions cm/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## V3.2.8
- fixed Docker test for mlperf-inference with cm4mlops
- minor improvements

## V3.2.7
- minor improvement in error handling and messages

Expand Down
2 changes: 1 addition & 1 8000 deletion cm/cmind/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Written by Grigori Fursin

__version__ = "3.2.7"
__version__ = "3.2.8"

from cmind.core import access
from cmind.core import x
Expand Down
2 changes: 1 addition & 1 deletion cm/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def run(self):
"cm = cmind.cli:run",
"cmx = cmind.cli:runx",
"cmr = cmind.cli:run_script",
"fflow = cmind.cli:run_ff",
"flexflow = cmind.cli:run_ff",
"cmrd = cmind.cli:docker_script",
"cmg = cmind.cli:gui_script",
"cme = cmind.cli:run_experiment"
Expand Down
3 changes: 2 additions & 1 deletion tests/script/test_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
'image_name':'cm-script-app-image-classification-onnx-py',
'env': {
'CM_DOCKER_RUN_SCRIPT_TAGS': 'app,image-classification,onnx,python',
'CM_MLOPS_REPO': 'ctuning@mlcommons-ck',
# 'CM_MLOPS_REPO': 'ctuning@mlcommons-ck',
'CM_MLOPS_REPO': 'mlcommons@cm4mlops',
'CM_DOCKER_IMAGE_BASE': 'ubuntu:22.04'
},
'quiet': 'yes'
Expand Down
Loading
0