Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
gfursin committed Feb 7, 2024
1 parent 623579e commit e130d4c
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
4 changes: 4 additions & 0 deletions cm-mlops/challenge/repro-micro2023/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ Conference: [ACM/IEEE MICRO 2023](https://www.microarch.org/micro56)
## Artifacts with the CM interface

* https://github.com/ctuning/cm-reproduce-research-projects

## Our experience report

* https://www.linkedin.com/pulse/micro-2023-artifact-evaluation-report-56th-ieeeacm-symposium-fursin-bsgwe/
19 changes: 19 additions & 0 deletions cm-mlops/report/repro-acm-ieee-micro2023/_cm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"alias": "repro-acm-ieee-micro2023",
"automation_alias": "report",
"automation_uid": "6462ecdba2054467",
"date": "20231113",
"redirect": "https://www.linkedin.com/pulse/micro-2023-artifact-evaluation-report-56th-ieeeacm-symposium-fursin-bsgwe",
"tags": [
"repro",
"reproducibility",
"artifact-evaluation",
"acm",
"ieee",
"micro",
"micro-2023",
"2023"
],
"title": "Artifact Evaluation and Reproducibility at ACM/IEEE MICRO'23",
"uid": "0dd8d20394fd4197"
}
2 changes: 1 addition & 1 deletion cm-mlops/script/gui/playground_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def page(st, params):

md = ''

for l in sorted(lst, key=lambda x: x.meta.get('date','')):
for l in sorted(lst, key=lambda x: x.meta.get('date',''), reverse=True):

meta = l.meta

Expand Down
3 changes: 3 additions & 0 deletions cm-mlops/script/launch-benchmark/customize.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ def load_cfg(i):

selection.append(meta)

# Sort by tags
selection = sorted(selection, key = lambda v: ','.join(v.get('tags',[])))

return {'return':0, 'lst':lst, 'selection':selection}


Expand Down

0 comments on commit e130d4c

Please sign in to comment.