ADD vector operation for cl and neon (#1166)
author윤현식/동작제어Lab(SR)/Principal Engineer/삼성전자 <hyunsik.yoon@samsung.com>
Wed, 16 May 2018 08:40:57 +0000 (17:40 +0900)
committer김정현/동작제어Lab(SR)/Senior Engineer/삼성전자 <jh0822.kim@samsung.com>
Wed, 16 May 2018 08:40:57 +0000 (17:40 +0900)
commit377ef929359a7b9e4e6475ed96b2f9b0a421ed1c
treeabb85bbd45443e33829db80efa7cbc4ba499cd7d
parentfb62b2cd8cefbd79235afed8e9c233d8e5ddb32b
ADD vector operation for cl and neon (#1166)

Added ADD operation. This commit handles vector addition.
Scalar and matrix operation will be added in next commits.
(It seems that format check works under more strick rule from this week.
 for this reason, util.h was changed)

Signed-off-by: Hyun Sik Yoon <hyunsik.yoon@samsung.com>
include/kernel/acl/Add.h [new file with mode: 0644]
libs/kernel/acl/CMakeLists.txt
libs/kernel/acl/src/Add.test.h [new file with mode: 0644]
libs/kernel/acl/src/cl/Add.cpp [new file with mode: 0644]
libs/kernel/acl/src/cl/Add.test.cpp [new file with mode: 0644]
libs/kernel/acl/src/neon/Add.cpp [new file with mode: 0644]
libs/kernel/acl/src/neon/Add.test.cpp [new file with mode: 0644]
libs/kernel/acl/src/util.cpp