From: 박천교/On-Device Lab(SR)/Engineer/삼성전자 Date: Mon, 28 Jan 2019 00:42:17 +0000 (+0900) Subject: [coco] Edit comment box into consistant way (#2923) X-Git-Tag: nncc_backup~921 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=96c2e7130c79922b568ebdf9994bce03c5ad35ca;p=platform%2Fcore%2Fml%2Fnnfw.git [coco] Edit comment box into consistant way (#2923) This commit edits '/***' into '/**' in coco as majority of comment boxs start with '/**'. Moreover doxygen could only parse comment boxs start with '/**' as documentation. Signed-off-by: Cheongyo Bahk --- diff --git a/contrib/coco/core/include/coco/IR/Bag.h b/contrib/coco/core/include/coco/IR/Bag.h index 756204a..0c71b6e 100644 --- a/contrib/coco/core/include/coco/IR/Bag.h +++ b/contrib/coco/core/include/coco/IR/Bag.h @@ -33,7 +33,7 @@ namespace coco { -/*** +/** * @brief A collection of (abstracted) elements of the same type * * When there are N elements in a bag, we refer to N as the size of this bag, and every diff --git a/contrib/coco/core/include/coco/IR/Block.h b/contrib/coco/core/include/coco/IR/Block.h index cd92d6f..1bb3f47 100644 --- a/contrib/coco/core/include/coco/IR/Block.h +++ b/contrib/coco/core/include/coco/IR/Block.h @@ -30,7 +30,7 @@ namespace coco using BlockList = DLinkedList::Head; -/*** +/** * @brief A unit of (grouped) instructions * * Block allows backend to manage a set of instructions as one unit, which is useful for H/W that diff --git a/contrib/coco/core/include/coco/IR/EntityManager.h b/contrib/coco/core/include/coco/IR/EntityManager.h index cb09bb1..e76dec7 100644 --- a/contrib/coco/core/include/coco/IR/EntityManager.h +++ b/contrib/coco/core/include/coco/IR/EntityManager.h @@ -30,7 +30,7 @@ namespace coco { -/*** +/** * @brief Meta (lifetime) manager interface * * EntityManager is referred as meta manager as it is a gateway to other diff --git a/contrib/coco/core/include/coco/IR/KernelObject.h b/contrib/coco/core/include/coco/IR/KernelObject.h index a497055..2ec0cee 100644 --- a/contrib/coco/core/include/coco/IR/KernelObject.h +++ b/contrib/coco/core/include/coco/IR/KernelObject.h @@ -27,7 +27,7 @@ namespace coco { -/*** +/** * @brief Convolution Kernel (in CNN) values */ class KernelObject final : public Object diff --git a/contrib/coco/core/include/coco/IR/Op.h b/contrib/coco/core/include/coco/IR/Op.h index 076caec..46d42f5 100644 --- a/contrib/coco/core/include/coco/IR/Op.h +++ b/contrib/coco/core/include/coco/IR/Op.h @@ -38,7 +38,7 @@ namespace coco #include "coco/IR/Op.lst" #undef OP -/*** +/** * @brief Base interface on all supported NN operations */ struct Op : public Entity