aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLArithmeticSubtraction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLArithmeticSubtraction.cpp')
-rw-r--r--src/runtime/CL/functions/CLArithmeticSubtraction.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/runtime/CL/functions/CLArithmeticSubtraction.cpp b/src/runtime/CL/functions/CLArithmeticSubtraction.cpp
index 651f51a24a..12a6b80691 100644
--- a/src/runtime/CL/functions/CLArithmeticSubtraction.cpp
+++ b/src/runtime/CL/functions/CLArithmeticSubtraction.cpp
@@ -36,3 +36,8 @@ void CLArithmeticSubtraction::configure(const ICLTensor *input1, const ICLTensor
k->configure(input1, input2, output, policy);
_kernel = std::move(k);
}
+
+Error CLArithmeticSubtraction::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, ConvertPolicy policy)
+{
+ return CLArithmeticSubtractionKernel::validate(input1, input2, output, policy);
+}