aboutsummaryrefslogtreecommitdiff
path: root/src/c/AclContext.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2021-08-03 08:24:00 +0100
committerSheri Zhang <sheri.zhang@arm.com>2021-08-04 08:56:33 +0000
commit4164814a099773c0a512889473c980bc148e590f (patch)
tree7ee27bbd40724635f5bf22bc9ec28b3a1a4d1ac9 /src/c/AclContext.cpp
parent6e90c12e3067c482524a08bf322f42de6d9d27b9 (diff)
downloadComputeLibrary-4164814a099773c0a512889473c980bc148e590f.tar.gz
Implement Operator API
Resolves: COMPMID-4512 Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Change-Id: Id12130365fa3fe2261160931dcc7affb6b467186 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6031 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/c/AclContext.cpp')
-rw-r--r--src/c/AclContext.cpp6
1 files changed, 3 insertions, 3 deletions
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;
}