[coco] Edit comment box into consistant way (#2923)
author박천교/On-Device Lab(SR)/Engineer/삼성전자 <ch.bahk@samsung.com>
Mon, 28 Jan 2019 00:42:17 +0000 (09:42 +0900)
committer박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Mon, 28 Jan 2019 00:42:17 +0000 (09:42 +0900)
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 <ch.bahk@samsung.com>
contrib/coco/core/include/coco/IR/Bag.h
contrib/coco/core/include/coco/IR/Block.h
contrib/coco/core/include/coco/IR/EntityManager.h
contrib/coco/core/include/coco/IR/KernelObject.h
contrib/coco/core/include/coco/IR/Op.h

index 756204a..0c71b6e 100644 (file)
@@ -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
index cd92d6f..1bb3f47 100644 (file)
@@ -30,7 +30,7 @@ namespace coco
 
 using BlockList = DLinkedList<Block, Module>::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
index cb09bb1..e76dec7 100644 (file)
@@ -30,7 +30,7 @@
 namespace coco
 {
 
-/***
+/**
  * @brief Meta (lifetime) manager interface
  *
  * EntityManager is referred as meta manager as it is a gateway to other
index a497055..2ec0cee 100644 (file)
@@ -27,7 +27,7 @@
 namespace coco
 {
 
-/***
+/**
  * @brief Convolution Kernel (in CNN) values
  */
 class KernelObject final : public Object
index 076caec..46d42f5 100644 (file)
@@ -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