diff --git a/CHANGES.txt b/CHANGES.txt index 1d066d1f53..ff0cb4d27d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,7 @@ -* V1.55.4.1 +* V1.55.5 * added --tags to "ck find" action to be able to search for entries by tags and return their paths + * added module:doc to abstract documentation * V1.55.4 * [sztaylor] fix cpu & gpu set_freq commands diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4a5f19fcd0..456db3df72 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ Please see https://ck.readthedocs.io/en/latest/guide/how-to-contribute.html N: Grigori Fursin (alias: FGG) E: Grigori.Fursin@cTuning.org H: https://fursin.net -O: cTuning foundation, France +O: cTuning foundation, France / OctoML.ai, USA C: original concept and prototyping, real-world use cases, development of https://cKnowledge.org and https://cKnowledge.io W: since Nov.1, 2014 diff --git a/ck/kernel.py b/ck/kernel.py index 41b4f1ec07..6ea9f37843 100755 --- a/ck/kernel.py +++ b/ck/kernel.py @@ -27,7 +27,7 @@ # We use 3 digits for the main (released) version and 4th digit for development revision -__version__ = "1.55.4.1" +__version__ = "1.55.5" # Do not use characters (to detect outdated version)! # Import packages that are global for the whole kernel diff --git a/ck/repo/module/.cm/alias-a-doc b/ck/repo/module/.cm/alias-a-doc new file mode 100644 index 0000000000..4ce5fdfded --- /dev/null +++ b/ck/repo/module/.cm/alias-a-doc @@ -0,0 +1 @@ +52b840ae194e640b diff --git a/ck/repo/module/.cm/alias-u-52b840ae194e640b b/ck/repo/module/.cm/alias-u-52b840ae194e640b new file mode 100644 index 0000000000..8e695ec83a --- /dev/null +++ b/ck/repo/module/.cm/alias-u-52b840ae194e640b @@ -0,0 +1 @@ +doc diff --git a/ck/repo/module/doc/.cm/desc.json b/ck/repo/module/doc/.cm/desc.json new file mode 100644 index 0000000000..0967ef424b --- /dev/null +++ b/ck/repo/module/doc/.cm/desc.json @@ -0,0 +1 @@ +{} diff --git a/ck/repo/module/doc/.cm/info.json b/ck/repo/module/doc/.cm/info.json new file mode 100644 index 0000000000..a7d3c2d840 --- /dev/null +++ b/ck/repo/module/doc/.cm/info.json @@ -0,0 +1,21 @@ +{ + "backup_data_uid": "52b840ae194e640b", + "backup_module_uid": "032630d041b4fd8a", + "backup_module_uoa": "module", + "control": { + "author": "Grigori Fursin", + "author_email": "Grigori.Fursin@cTuning.org", + "author_webpage": "http://fursin.net", + "copyright": "See CK COPYRIGHT.txt for copyright details", + "engine": "CK", + "iso_datetime": "2021-04-16T15:54:03.688043", + "license": "See CK LICENSE.txt for licensing details", + "version": [ + "1", + "55", + "4", + "1" + ] + }, + "data_name": "doc" +} diff --git a/ck/repo/module/doc/.cm/meta.json b/ck/repo/module/doc/.cm/meta.json new file mode 100644 index 0000000000..db8c5d362e --- /dev/null +++ b/ck/repo/module/doc/.cm/meta.json @@ -0,0 +1,9 @@ +{ + "actions": {}, + "copyright": "See CK COPYRIGHT.txt for copyright details", + "desc": "documentation", + "developer": "Grigori Fursin", + "developer_email": "Grigori.Fursin@cTuning.org", + "developer_webpage": "http://fursin.net", + "license": "See CK LICENSE.txt for licensing details" +} diff --git a/ck/repo/module/doc/module.py b/ck/repo/module/doc/module.py new file mode 100644 index 0000000000..0515fe49f1 --- /dev/null +++ b/ck/repo/module/doc/module.py @@ -0,0 +1,32 @@ +# +# Collective Knowledge (documentation) +# +# See CK LICENSE.txt for licensing details +# See CK COPYRIGHT.txt for copyright details +# +# Developer: Grigori Fursin, Grigori.Fursin@cTuning.org, 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}