blob: c6c0820c926e79c319a117f3bed48ba911c47d53 [file] [log] [blame]
Georgios Pinitas8a5146f2021-01-12 15:51:07 +00001/*
Matthew Bentham1d062042023-07-06 13:13:59 +00002 * Copyright (c) 2021,2023 Arm Limited.
Georgios Pinitas8a5146f2021-01-12 15:51:07 +00003 *
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"
Matthew Bentham1d062042023-07-06 13:13:59 +000025#include "arm_compute/core/Error.h"
26
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000027#include "src/common/IContext.h"
28#include "src/common/utils/Macros.h"
29#include "src/common/utils/Validate.h"
30
31#ifdef ARM_COMPUTE_CPU_ENABLED
32#include "src/cpu/CpuContext.h"
33#endif /* ARM_COMPUTE_CPU_ENABLED */
34
35#ifdef ARM_COMPUTE_OPENCL_ENABLED
36#include "src/gpu/cl/ClContext.h"
37#endif /* ARM_COMPUTE_OPENCL_ENABLED */
38
39namespace
40{
41template <typename ContextType>
42arm_compute::IContext *create_backend_ctx(const AclContextOptions *options)
43{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010044 return new (std::nothrow) ContextType(options);
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000045}
46
47bool is_target_valid(AclTarget target)
48{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010049 return arm_compute::utils::is_in(target, {AclCpu, AclGpuOcl});
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000050}
51
52bool are_context_options_valid(const AclContextOptions *options)
53{
54 ARM_COMPUTE_ASSERT_NOT_NULLPTR(options);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010055 return arm_compute::utils::is_in(options->mode, {AclPreferFastRerun, AclPreferFastStart});
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000056}
57
58arm_compute::IContext *create_context(AclTarget target, const AclContextOptions *options)
59{
Georgios Pinitasc6939472021-05-07 17:56:31 +010060 ARM_COMPUTE_UNUSED(options);
61
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010062 switch (target)
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000063 {
64#ifdef ARM_COMPUTE_CPU_ENABLED
65 case AclCpu:
66 return create_backend_ctx<arm_compute::cpu::CpuContext>(options);
67#endif /* ARM_COMPUTE_CPU_ENABLED */
68#ifdef ARM_COMPUTE_OPENCL_ENABLED
69 case AclGpuOcl:
70 return create_backend_ctx<arm_compute::gpu::opencl::ClContext>(options);
71#endif /* ARM_COMPUTE_OPENCL_ENABLED */
72 default:
73 return nullptr;
74 }
75 return nullptr;
76}
77} // namespace
78
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010079extern "C" AclStatus AclCreateContext(AclContext *external_ctx, AclTarget target, const AclContextOptions *options)
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000080{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010081 if (!is_target_valid(target))
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000082 {
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000083 ARM_COMPUTE_LOG_ERROR_WITH_FUNCNAME_ACL("Target is invalid!");
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000084 return AclUnsupportedTarget;
85 }
86
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010087 if (options != nullptr && !are_context_options_valid(options))
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000088 {
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000089 ARM_COMPUTE_LOG_ERROR_WITH_FUNCNAME_ACL("Context options are invalid!");
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000090 return AclInvalidArgument;
91 }
92
Georgios Pinitas41648142021-08-03 08:24:00 +010093 auto ctx = create_context(target, options);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010094 if (ctx == nullptr)
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000095 {
Georgios Pinitas3f26ef42021-02-23 10:01:33 +000096 ARM_COMPUTE_LOG_ERROR_WITH_FUNCNAME_ACL("Couldn't allocate internal resources for context creation!");
Georgios Pinitas8a5146f2021-01-12 15:51:07 +000097 return AclOutOfMemory;
98 }
Georgios Pinitas41648142021-08-03 08:24:00 +010099 *external_ctx = ctx;
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000100
101 return AclSuccess;
102}
103
104extern "C" AclStatus AclDestroyContext(AclContext external_ctx)
105{
106 using namespace arm_compute;
107
108 IContext *ctx = get_internal(external_ctx);
109
Georgios Pinitas3f26ef42021-02-23 10:01:33 +0000110 StatusCode status = detail::validate_internal_context(ctx);
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000111 ARM_COMPUTE_RETURN_CENUM_ON_FAILURE(status);
112
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100113 if (ctx->refcount() != 0)
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000114 {
Georgios Pinitas3f26ef42021-02-23 10:01:33 +0000115 ARM_COMPUTE_LOG_ERROR_WITH_FUNCNAME_ACL("Context has references on it that haven't been released!");
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000116 // TODO: Fix the refcount with callback when reaches 0
117 }
118
119 delete ctx;
120
121 return utils::as_cenum<AclStatus>(status);
122}