Skip to content

Commit

Permalink
v3.2.1: fixed minor issue with backwards compatibility with CM (#1323)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfursin authored Oct 13, 2024
2 parents 3bc1bb9 + 80e7568 commit b7b811d
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-cm-image-classification-onnx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: 'CM: image classification with ONNX'

on:
pull_request:
branches: [ "main", "dev" ]
branches: [ "master", "main", "dev" ]
paths:
- '.github/workflows/test-image-classification-onnx.yml'
- '**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-cm-mlperf-inference-resnet50.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: 'CM: MLPerf inference resnet50'

on:
pull_request:
branches: [ "master", "dev" ]
branches: [ "master", "main", "dev" ]
paths:
- '.github/workflows/test-mlperf-inference-resnet50.yml'
- '**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-cm-script-features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: CM script automation features test

on:
pull_request:
branches: [ "master", "dev" ]
branches: [ "master", "main", "dev" ]
paths:
- '.github/workflows/test-cm-script-features.yml'
- '**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-cm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: CM test

on:
pull_request:
branches: [ "master" ]
branches: [ "master", "main", "dev" ]
paths:
- '.github/workflows/test-cm.yml'
- 'cm/**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-cmx-image-classification-onnx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: 'CMX: image classification with ONNX'

on:
pull_request:
branches: [ "main", "dev" ]
branches: [ "master", "main", "dev" ]
paths:
- '.github/workflows/test-image-classification-onnx.yml'
- '**'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
[![arXiv](https://img.shields.io/badge/arXiv-2406.16791-b31b1b.svg)](https://arxiv.org/abs/2406.16791)
[![CM test](https://github.com/mlcommons/ck/actions/workflows/test-cm.yml/badge.svg)](https://github.com/mlcommons/ck/actions/workflows/test-cm.yml)
[![CM script automation features test](https://github.com/mlcommons/ck/actions/workflows/test-cm-script-features.yml/badge.svg)](https://github.com/mlcommons/ck/actions/workflows/test-cm-script-features.yml)
[![MLPerf inference resnet50](https://github.com/mlcommons/ck/actions/workflows/test-mlperf-inference-resnet50.yml/badge.svg)](https://github.com/mlcommons/ck/actions/workflows/test-mlperf-inference-resnet50.yml)
[![Publish documentation site](https://github.com/mlcommons/ck/actions/workflows/publish.yaml/badge.svg)](https://github.com/mlcommons/ck/actions/workflows/publish.yaml)
[![MLPerf inference resnet50](https://github.com/mlcommons/ck/actions/workflows/test-cm-mlperf-inference-resnet50.yml/badge.svg)](https://github.com/mlcommons/ck/actions/workflows/test-cm-mlperf-inference-resnet50.yml)
[![CMX: image classification with ONNX](https://github.com/mlcommons/ck/actions/workflows/test-cmx-image-classification-onnx.yml/badge.svg)](https://github.com/mlcommons/ck/actions/workflows/test-cmx-image-classification-onnx.yml)

### About

Expand Down
2 changes: 1 addition & 1 deletion cm/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## V3.2.0.1
## V3.2.1
- added `-f` to the CMX core to be backwards compatible
with CM commands like `cm rm cache -f`

Expand Down
2 changes: 1 addition & 1 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.0.1"
__version__ = "3.2.1"

from cmind.core import access
from cmind.core import x
Expand Down

0 comments on commit b7b811d

Please sign in to comment.