-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added module "docker.template" to support adaptive CK containers
* added rebuild function to module:docker to rebuild images (#145) * added support for multiple Docker tags in module:docker See example: https://github.com/octoml/mlops/tree/main/docker/ck-template-mlperf * added "default_org" key in Docker image to specify default organization * added "outdated" and "aging" keys in Docker images to warn user about a status of a given Docker image * added main CK and MLPerf repositories to Zenodo to ensure reproducibilty * added common function "tested" to mark CK entries as tested, i.e. "ck tested docker:mlperf-inference-v0.7.openvino"
- Loading branch information
Showing
21 changed files
with
305 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
619e141969aa4bad |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
docker.template |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"backup_data_uid": "619e141969aa4bad", | ||
"backup_module_uid": "032630d041b4fd8a", | ||
"backup_module_uoa": "module", | ||
"control": { | ||
"author": "Grigori Fursin", | ||
"author_email": "[email protected]", | ||
"author_webpage": "http://fursin.net", | ||
"copyright": "See CK COPYRIGHT.txt for copyright details", | ||
"engine": "CK", | ||
"iso_datetime": "2021-05-23T16:28:50.758788", | ||
"license": "See CK LICENSE.txt for licensing details", | ||
"version": [ | ||
"2", | ||
"2", | ||
"0" | ||
] | ||
}, | ||
"data_name": "docker.template" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"actions": {}, | ||
"copyright": "See CK COPYRIGHT.txt for copyright details", | ||
"desc": "Docker template", | ||
"developer": "Grigori Fursin", | ||
"developer_email": "[email protected]", | ||
"developer_webpage": "http://fursin.net", | ||
"license": "See CK LICENSE.txt for licensing details" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# | ||
# Collective Knowledge (Docker template) | ||
# | ||
# See CK LICENSE.txt for licensing details | ||
# See CK COPYRIGHT.txt for copyright details | ||
## | ||
# Developer: Grigori Fursin, [email protected], http://fursin.net | ||
# | ||
|
||
cfg = {} # Will be updated by CK (meta description of this module) | ||
work = {} # Will be updated by CK (temporal data) | ||
ck = None # Will be updated by CK (initialized CK kernel) | ||
|
||
# Local settings | ||
|
||
############################################################################## | ||
# Initialize module | ||
|
||
|
||
def init(i): | ||
""" | ||
Input: {} | ||
Output: { | ||
return - return code = 0, if successful | ||
> 0, if error | ||
(error) - error text if return > 0 | ||
} | ||
""" | ||
return {'return': 0} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,6 +75,20 @@ | |
"4", | ||
"1" | ||
] | ||
}, | ||
{ | ||
"author": "Grigori Fursin", | ||
"author_email": "[email protected]", | ||
"author_webpage": "http://fursin.net", | ||
"copyright": "See CK COPYRIGHT.txt for copyright details", | ||
"engine": "CK", | ||
"iso_datetime": "2021-05-24T09:03:30.724920", | ||
"license": "See CK LICENSE.txt for licensing details", | ||
"version": [ | ||
"2", | ||
"2", | ||
"0" | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.