Skip to content

Commit

Permalink
Merge pull request #6 from ctuning/dev
Browse files Browse the repository at this point in the history
sync
  • Loading branch information
gfursin authored Jan 22, 2025
2 parents cd9168e + 3982b99 commit 5430713
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ on:
issue_comment:
types: [created]
pull_request_target:
types: [opened,closed,synchronize]
types: [opened,closed,synchronize]

jobs:
cla-check:
if: github.repository_owner == 'mlcommons'
runs-on: ubuntu-latest
steps:
- name: "MLCommons CLA bot check"
Expand All @@ -22,7 +23,7 @@ jobs:
path-to-signatures: 'cla-bot/v1/cla.json'
# branch should not be protected
branch: 'main'
allowlist: user1,bot*
allowlist: user1,mlcommons-bot,bot*
remote-organization-name: mlcommons
remote-repository-name: systems

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-cmx-mlperf-inference-resnet50.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ jobs:
git config --global credential.https://github.com.helper "!gh auth git-credential"
git config --global credential.https://gist.github.com.helper ""
git config --global credential.https://gist.github.com.helper "!gh auth git-credential"
cm run script --tags=push,github,mlperf,inference,submission --repo_url= https://github.com/ctuning/test_mlperf_inference_submissions --repo_branch=main --commit_message="Results from R50 GH action on ${{ matrix.os }}" --quiet
cmx run script --tags=push,github,mlperf,inference,submission --repo_url="https://github.com/ctuning/test_mlperf_inference_submissions" --repo_branch=main --commit_message="Results from R50 GH action on ${{ matrix.os }}" --quiet
10 changes: 10 additions & 0 deletions cmx4mlops/cmx4mlops/repo/automation/cmx-demo/modulex.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,13 @@ def test(self, i):

return {'return':0}


############################################################
def run(self, i):

import json
print (json.dumps(i, indent=2))

v = i.get('test','')

return {'return':0, 'new_key':v}

0 comments on commit 5430713

Please sign in to comment.