Introduce UniqueTensor (#1158)
author김정현/동작제어Lab(SR)/Senior Engineer/삼성전자 <jh0822.kim@samsung.com>
Fri, 11 May 2018 07:00:17 +0000 (16:00 +0900)
committer서상민/동작제어Lab(SR)/Senior Engineer/삼성전자 <sangmin7.seo@samsung.com>
Fri, 11 May 2018 07:00:17 +0000 (16:00 +0900)
commitfbc8ef0b411094a299993d2811e106c11fc3de83
tree7cc9e020cbf06cd7b614ac3fe8c2b64fe59ee58d
parentc54c430e83aa129c0d3d701c792e646f980f40a4
Introduce UniqueTensor (#1158)

Since NEUniqueTensor and CLUniqueTensor is very similar,
this commit introduce UniqueTensor to merge them into one.
After this commit, the current implementation of NEUniqueTensor
and CLUniqueTensor will be removed and replaced like below:

```
using NEUniqueTensor = UniqueTensor<::arm_compute::Tensor>;
using CLUniqueTensor = UniqueTensor<::arm_compute::CLTensor>;
```

Signed-off-by: Junghyun Kim <jh0822.kim@samsung.com>
libs/kernel/acl/src/UniqueTensor.h [new file with mode: 0644]