IVGCVSW-1946: Remove armnn/src from the include paths
[platform/upstream/armnn.git] / src / backends / cl / workloads / ClSoftmaxBaseWorkload.cpp
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5
6 #include "ClSoftmaxBaseWorkload.hpp"
7
8 #include <aclCommon/ArmComputeTensorUtils.hpp>
9
10 #include <arm_compute/runtime/CL/functions/CLSoftmaxLayer.h>
11
12 namespace armnn
13 {
14
15 arm_compute::Status ClSoftmaxWorkloadValidate(const TensorInfo& input,
16                                               const TensorInfo& output)
17 {
18     // NOTE: We report 4D Softmax as unsupported until full support is added to ACL
19     if(input.GetShape().GetNumDimensions() >= 4u)
20     {
21         return arm_compute::Status(arm_compute::ErrorCode::RUNTIME_ERROR, "4d softmax is not supported");
22     }
23
24     const arm_compute::TensorInfo aclInputInfo = armcomputetensorutils::BuildArmComputeTensorInfo(input);
25     const arm_compute::TensorInfo aclOutputInfo = armcomputetensorutils::BuildArmComputeTensorInfo(output);
26
27     return arm_compute::CLSoftmaxLayer::validate(&aclInputInfo, &aclOutputInfo);
28 }
29
30 }