aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CL/functions/CLElementwiseOperations.h
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2020-10-07 17:17:16 +0100
committerSheri Zhang <sheri.zhang@arm.com>2020-10-20 14:12:05 +0000
commited2a8ed7efb54ae0ec539b8735820b2c30756c44 (patch)
tree4de3adfd3fb8fa3d5a8b1df3f36e0db46d32a2b2 /arm_compute/runtime/CL/functions/CLElementwiseOperations.h
parent68dd25fbe6e4d3c3513fa5993863419769aa08fc (diff)
downloadComputeLibrary-ed2a8ed7efb54ae0ec539b8735820b2c30756c44.tar.gz
COMPMID-3715: Remove OpenCL padding - CLElementwiseOperationKernel
Change-Id: I8a685d4ac5de747a0f775bd10be9c411cf394953 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4140 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Reviewed-by: Sang-Hoon Park <sang-hoon.park@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/runtime/CL/functions/CLElementwiseOperations.h')
-rw-r--r--arm_compute/runtime/CL/functions/CLElementwiseOperations.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/arm_compute/runtime/CL/functions/CLElementwiseOperations.h b/arm_compute/runtime/CL/functions/CLElementwiseOperations.h
index 2d9d43863d..31d4f2e745 100644
--- a/arm_compute/runtime/CL/functions/CLElementwiseOperations.h
+++ b/arm_compute/runtime/CL/functions/CLElementwiseOperations.h
@@ -24,7 +24,6 @@
#ifndef ARM_COMPUTE_CLELEMENTWISEOPERATIONS_H
#define ARM_COMPUTE_CLELEMENTWISEOPERATIONS_H
-#include "arm_compute/core/CL/kernels/CLFillBorderKernel.h"
#include "arm_compute/runtime/CL/ICLOperator.h"
#include "arm_compute/runtime/IFunction.h"
@@ -99,9 +98,6 @@ public:
// Inherited methods overridden:
void run(ITensorPack &tensors) override;
-
-private:
- CLFillBorderKernel _border_handler;
};
/** Basic function to run @ref CLSaturatedArithmeticOperationKernel for subtraction
@@ -169,9 +165,6 @@ public:
// Inherited methods overridden:
void run(ITensorPack &tensors) override;
-
-private:
- CLFillBorderKernel _border_handler;
};
/** Basic function to run @ref CLSaturatedArithmeticOperationKernel for division
@@ -208,9 +201,6 @@ public:
// Inherited methods overridden:
void run(ITensorPack &tensors) override;
-
-private:
- CLFillBorderKernel _border_handler;
};
/** Basic function to run @ref CLArithmeticOperationKernel for max
@@ -247,9 +237,6 @@ public:
// Inherited methods overridden:
void run(ITensorPack &tensors) override;
-
-private:
- CLFillBorderKernel _border_handler;
};
/** Basic function to run @ref CLArithmeticOperationKernel for min
@@ -286,9 +273,6 @@ public:
// Inherited methods overridden:
void run(ITensorPack &tensors) override;
-
-private:
- CLFillBorderKernel _border_handler;
};
/** Basic function to run @ref CLArithmeticOperationKernel for squared difference
@@ -325,9 +309,6 @@ public:
// Inherited methods overridden:
void run(ITensorPack &tensors) override;
-
-private:
- CLFillBorderKernel _border_handler;
};
/** Basic function to run @ref CLArithmeticOperationKernel for power
@@ -364,9 +345,6 @@ public:
// Inherited methods overridden:
void run(ITensorPack &tensors) override;
-
-private:
- CLFillBorderKernel _border_handler;
};
} // namespace experimental