From 96c2e7130c79922b568ebdf9994bce03c5ad35ca Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=B2=9C=EA=B5=90/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Mon, 28 Jan 2019 09:42:17 +0900 Subject: [PATCH] [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 --- contrib/coco/core/include/coco/IR/Bag.h | 2 +- contrib/coco/core/include/coco/IR/Block.h | 2 +- contrib/coco/core/include/coco/IR/EntityManager.h | 2 +- contrib/coco/core/include/coco/IR/KernelObject.h | 2 +- contrib/coco/core/include/coco/IR/Op.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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 -- 2.7.4