aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAdnan AlSinan <adnan.alsinan@arm.com>2023-07-10 15:20:44 +0100
committerAdnan AlSinan <adnan.alsinan@arm.com>2023-07-14 12:55:26 +0000
commit4184e86508c3b1a744e9687d1112ba5f65f55eeb (patch)
tree582520ac5cdf54800a36e8162c1f9b6f0f6f29d8 /tests
parenta5577dbe4735656e488aa7a47261b993e49b6562 (diff)
downloadComputeLibrary-4184e86508c3b1a744e9687d1112ba5f65f55eeb.tar.gz
Port ClTemplateActivation into Ckw
Resolves COMPMID-6256 Signed-off-by: Adnan AlSinan <adnan.alsinan@arm.com> Change-Id: I48f6a9dfadefced20802bec1ab4ab843a9deba6e Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9912 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: SiCong Li <sicong.li@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/validation/dynamic_fusion/gpu/cl/Clamp.cpp6
-rw-r--r--tests/validation/dynamic_fusion/gpu/cl/Sigmoid.cpp6
-rw-r--r--tests/validation/dynamic_fusion/gpu/cl/Tanh.cpp6
3 files changed, 12 insertions, 6 deletions
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,