From 4164814a099773c0a512889473c980bc148e590f Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 3 Aug 2021 08:24:00 +0100 Subject: Implement Operator API Resolves: COMPMID-4512 Signed-off-by: Georgios Pinitas Change-Id: Id12130365fa3fe2261160931dcc7affb6b467186 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6031 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- src/c/AclContext.cpp | 6 ++--- src/c/operators/AclActivation.cpp | 49 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 3 deletions(-) create mode 100644 src/c/operators/AclActivation.cpp (limited to 'src/c') diff --git a/src/c/AclContext.cpp b/src/c/AclContext.cpp index c62e627edc..dbf2a3df88 100644 --- a/src/c/AclContext.cpp +++ b/src/c/AclContext.cpp @@ -75,7 +75,7 @@ arm_compute::IContext *create_context(AclTarget target, const AclContextOptions } } // namespace -extern "C" AclStatus AclCreateContext(AclContext *ctx, +extern "C" AclStatus AclCreateContext(AclContext *external_ctx, AclTarget target, const AclContextOptions *options) { @@ -91,13 +91,13 @@ extern "C" AclStatus AclCreateContext(AclContext *ctx, return AclInvalidArgument; } - auto acl_ctx = create_context(target, options); + auto ctx = create_context(target, options); if(ctx == nullptr) { ARM_COMPUTE_LOG_ERROR_WITH_FUNCNAME_ACL("Couldn't allocate internal resources for context creation!"); return AclOutOfMemory; } - *ctx = acl_ctx; + *external_ctx = ctx; return AclSuccess; } diff --git a/src/c/operators/AclActivation.cpp b/src/c/operators/AclActivation.cpp new file mode 100644 index 0000000000..bf604ee2dd --- /dev/null +++ b/src/c/operators/AclActivation.cpp @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2021 Arm Limited. + * + * SPDX-License-Identifier: MIT + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +#include "arm_compute/AclOperators.h" + +#include "src/common/IOperator.h" +#include "src/common/utils/Macros.h" +#include "src/common/utils/Validate.h" + +extern "C" AclStatus AclActivation(AclOperator *external_op, + AclContext external_ctx, + const AclTensorDescriptor *src, + const AclTensorDescriptor *dst, + const AclActivationDescriptor info) +{ + using namespace arm_compute; + + // Extract internal context + auto ctx = get_internal(external_ctx); + StatusCode status = detail::validate_internal_context(ctx); + ARM_COMPUTE_RETURN_CENUM_ON_FAILURE(status); + + bool is_validate = (external_op == ARM_COMPUTE_VALIDATE_OPERATOR_SUPPORT); + + std::tie(*external_op, status) = ctx->create_activation(*src, *dst, info, is_validate); + ARM_COMPUTE_RETURN_CENUM_ON_FAILURE(status); + + return AclSuccess; +} \ No newline at end of file -- cgit v1.2.1