85b18e8475d8ca8965633bd12fc37af93b735242
[platform/core/ml/nnfw.git] / runtime / onert / backend / acl_common / AclFunction.h
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __ONERT_BACKEND_ACL_COMMON_KERNEL_ACL_FUNCTION_H__
18 #define __ONERT_BACKEND_ACL_COMMON_KERNEL_ACL_FUNCTION_H__
19
20 #include <exec/IFunction.h>
21 #include <arm_compute/runtime/IFunction.h>
22 #include <memory>
23
24 namespace onert
25 {
26 namespace backend
27 {
28 namespace acl_common
29 {
30
31 class AclFunction : public ::onert::exec::IFunction
32 {
33 public:
34   AclFunction() = delete;
35
36 public:
37   AclFunction(std::unique_ptr<::arm_compute::IFunction> &&func) : _func(std::move(func))
38   {
39     // DO NOTHING
40   }
41
42 public:
43   void run() override { _func->run(); }
44   void prepare() override { _func->prepare(); }
45
46 private:
47   std::unique_ptr<::arm_compute::IFunction> _func;
48 };
49
50 class AclClFunction : public AclFunction
51 {
52 public:
53   using AclFunction::AclFunction;
54 };
55
56 } // namespace acl_common
57 } // namespace backend
58 } // namespace onert
59
60 #endif // __ONERT_BACKEND_ACL_COMMON_KERNEL_ACL_FUNCTION_H__