aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLTranspose.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLTranspose.cpp')
-rw-r--r--src/runtime/CL/functions/CLTranspose.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/runtime/CL/functions/CLTranspose.cpp b/src/runtime/CL/functions/CLTranspose.cpp
index cd19e255bd..ad5c04124d 100644
--- a/src/runtime/CL/functions/CLTranspose.cpp
+++ b/src/runtime/CL/functions/CLTranspose.cpp
@@ -35,4 +35,9 @@ void CLTranspose::configure(const ICLTensor *input, ICLTensor *output)
auto k = arm_compute::support::cpp14::make_unique<CLTransposeKernel>();
k->configure(input, output);
_kernel = std::move(k);
+}
+
+Error CLTranspose::validate(const ITensorInfo *input, const ITensorInfo *output)
+{
+ return CLTransposeKernel::validate(input, output);
} \ No newline at end of file