From 4184e86508c3b1a744e9687d1112ba5f65f55eeb Mon Sep 17 00:00:00 2001 From: Adnan AlSinan Date: Mon, 10 Jul 2023 15:20:44 +0100 Subject: Port ClTemplateActivation into Ckw Resolves COMPMID-6256 Signed-off-by: Adnan AlSinan Change-Id: I48f6a9dfadefced20802bec1ab4ab843a9deba6e Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9912 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: SiCong Li Benchmark: Arm Jenkins --- tests/validation/dynamic_fusion/gpu/cl/Clamp.cpp | 6 ++++-- tests/validation/dynamic_fusion/gpu/cl/Sigmoid.cpp | 6 ++++-- tests/validation/dynamic_fusion/gpu/cl/Tanh.cpp | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) (limited to 'tests') diff --git a/tests/validation/dynamic_fusion/gpu/cl/Clamp.cpp b/tests/validation/dynamic_fusion/gpu/cl/Clamp.cpp index dc46dd594e..285c0d6608 100644 --- a/tests/validation/dynamic_fusion/gpu/cl/Clamp.cpp +++ b/tests/validation/dynamic_fusion/gpu/cl/Clamp.cpp @@ -111,7 +111,8 @@ FIXTURE_DATA_TEST_CASE(RunSmall5dOneOp, framework::dataset::make("DataType", DataType::F16))) { // Validate output - validate(CLAccessor(_target), _reference, tolerance); + ARM_COMPUTE_TEST_INFO("Currently 5D+ tensors are unsupported for this operation."); + framework::ARM_COMPUTE_PRINT_INFO(); } FIXTURE_DATA_TEST_CASE(RunSmallTwoOps, @@ -150,7 +151,8 @@ FIXTURE_DATA_TEST_CASE(RunSmall5dOneOp, framework::dataset::make("DataType", DataType::F32))) { // Validate output - validate(CLAccessor(_target), _reference, tolerance); + ARM_COMPUTE_TEST_INFO("Currently 5D+ tensors are unsupported for this operation."); + framework::ARM_COMPUTE_PRINT_INFO(); } FIXTURE_DATA_TEST_CASE(RunSmallTwoOps, diff --git a/tests/validation/dynamic_fusion/gpu/cl/Sigmoid.cpp b/tests/validation/dynamic_fusion/gpu/cl/Sigmoid.cpp index 5fd11807bc..e995511171 100644 --- a/tests/validation/dynamic_fusion/gpu/cl/Sigmoid.cpp +++ b/tests/validation/dynamic_fusion/gpu/cl/Sigmoid.cpp @@ -97,7 +97,8 @@ FIXTURE_DATA_TEST_CASE(RunSmall5dOneOp, framework::dataset::make("DataType", DataType::F16))) { // Validate output - validate(CLAccessor(_target), _reference, tolerance_f16); + ARM_COMPUTE_TEST_INFO("Currently 5D+ tensors are unsupported for this operation."); + framework::ARM_COMPUTE_PRINT_INFO(); } FIXTURE_DATA_TEST_CASE(RunSmallTwoOps, @@ -133,7 +134,8 @@ FIXTURE_DATA_TEST_CASE(RunSmall5dOneOp, framework::dataset::make("DataType", DataType::F32))) { // Validate output - validate(CLAccessor(_target), _reference, tolerance_f32); + ARM_COMPUTE_TEST_INFO("Currently 5D+ tensors are unsupported for this operation."); + framework::ARM_COMPUTE_PRINT_INFO(); } FIXTURE_DATA_TEST_CASE(RunSmallTwoOps, diff --git a/tests/validation/dynamic_fusion/gpu/cl/Tanh.cpp b/tests/validation/dynamic_fusion/gpu/cl/Tanh.cpp index 00c92fbfc2..12f3677abf 100644 --- a/tests/validation/dynamic_fusion/gpu/cl/Tanh.cpp +++ b/tests/validation/dynamic_fusion/gpu/cl/Tanh.cpp @@ -97,7 +97,8 @@ FIXTURE_DATA_TEST_CASE(RunSmall5dOneOp, framework::dataset::make("DataType", DataType::F16))) { // Validate output - validate(CLAccessor(_target), _reference, tolerance_f16); + ARM_COMPUTE_TEST_INFO("Currently 5D+ tensors are unsupported for this operation."); + framework::ARM_COMPUTE_PRINT_INFO(); } FIXTURE_DATA_TEST_CASE(RunSmallTwoOps, @@ -133,7 +134,8 @@ FIXTURE_DATA_TEST_CASE(RunSmall5dOneOp, framework::dataset::make("DataType", DataType::F32))) { // Validate output - validate(CLAccessor(_target), _reference, tolerance_f32); + ARM_COMPUTE_TEST_INFO("Currently 5D+ tensors are unsupported for this operation."); + framework::ARM_COMPUTE_PRINT_INFO(); } FIXTURE_DATA_TEST_CASE(RunSmallTwoOps, -- cgit v1.2.1