blob: dbf2a3df88757e11abea577b04023a74e0699cf3 [file] [log] [blame]
Georgios Pinitas8a5146f2021-01-12 15:51:07 +00001/*
2 * Copyright (c) 2021 Arm Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/AclEntrypoints.h"
25
26#include "src/common/IContext.h"
27#include "src/common/utils/Macros.h"
28#include "src/common/utils/Validate.h"
29
30#ifdef ARM_COMPUTE_CPU_ENABLED
31#include "src/cpu/CpuContext.h"
32#endif /* ARM_COMPUTE_CPU_ENABLED */
33
34#ifdef ARM_COMPUTE_OPENCL_ENABLED
35#include "src/gpu/cl/ClContext.h"
36#endif /* ARM_COMPUTE_OPENCL_ENABLED */
37
38namespace
39{
40template <typename ContextType>
41arm_compute::IContext *create_backend_ctx(const AclContextOptions *options)
42{
43 return new(std::nothrow) ContextType(options);
44}
45
46bool is_target_valid(AclTarget target)
47{
48 return arm_compute::utils::is_in(target, { AclCpu, AclGpuOcl });
49}
50
51bool are_context_options_valid(const AclContextOptions *options)
52{
53 ARM_COMPUTE_ASSERT_NOT_NULLPTR(options);
54 return arm_compute::utils::is_in(options->mode, { AclPreferFastRerun, AclPreferFastStart });
55}
56
57arm_compute::IContext *create_context(AclTarget target, const AclContextOptions *options)
58{
Georgios Pinitasc6939472021-05-07 17:56:31 +010059 ARM_COMPUTE_UNUSED(options);
60
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000061 switch(target)
62 {
63#ifdef ARM_COMPUTE_CPU_ENABLED
64 case AclCpu:
65 return create_backend_ctx<arm_compute::cpu::CpuContext>(options);
66#endif /* ARM_COMPUTE_CPU_ENABLED */
67#ifdef ARM_COMPUTE_OPENCL_ENABLED
68 case AclGpuOcl:
69 return create_backend_ctx<arm_compute::gpu::opencl::ClContext>(options);
70#endif /* ARM_COMPUTE_OPENCL_ENABLED */
71 default:
72 return nullptr;
73 }
74 return nullptr;
75}
76} // namespace
77
Georgios Pinitas41648142021-08-03 08:24:00 +010078extern "C" AclStatus AclCreateContext(AclContext *external_ctx,
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000079 AclTarget target,
80 const AclContextOptions *options)
81{
82 if(!is_target_valid(target))
83 {
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000084 ARM_COMPUTE_LOG_ERROR_WITH_FUNCNAME_ACL("Target is invalid!");
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000085 return AclUnsupportedTarget;
86 }
87
88 if(options != nullptr && !are_context_options_valid(options))
89 {
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000090 ARM_COMPUTE_LOG_ERROR_WITH_FUNCNAME_ACL("Context options are invalid!");
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000091 return AclInvalidArgument;
92 }
93
Georgios Pinitas41648142021-08-03 08:24:00 +010094 auto ctx = create_context(target, options);
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000095 if(ctx == nullptr)
96 {
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000097 ARM_COMPUTE_LOG_ERROR_WITH_FUNCNAME_ACL("Couldn't allocate internal resources for context creation!");
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000098 return AclOutOfMemory;
99 }
Georgios Pinitas41648142021-08-03 08:24:00 +0100100 *external_ctx = ctx;
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000101
102 return AclSuccess;
103}
104
105extern "C" AclStatus AclDestroyContext(AclContext external_ctx)
106{
107 using namespace arm_compute;
108
109 IContext *ctx = get_internal(external_ctx);
110
Georgios Pinitas3f26ef42021-02-23 10:01:33 +0000111 StatusCode status = detail::validate_internal_context(ctx);
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000112 ARM_COMPUTE_RETURN_CENUM_ON_FAILURE(status);
113
114 if(ctx->refcount() != 0)
115 {
Georgios Pinitas3f26ef42021-02-23 10:01:33 +0000116 ARM_COMPUTE_LOG_ERROR_WITH_FUNCNAME_ACL("Context has references on it that haven't been released!");
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000117 // TODO: Fix the refcount with callback when reaches 0
118 }
119
120 delete ctx;
121
122 return utils::as_cenum<AclStatus>(status);
123}