aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/CL/HOGDetector.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-04-25 11:46:11 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:49:54 +0000
commite91abd712cded6f7185e2e8b8f4c3a841883e0a8 (patch)
tree0cf1e955de07fd7d03dbd73aaa86a85669e9818c /tests/validation/CL/HOGDetector.cpp
parent84ce1f9d5d63c7fcfa5ac3f52e4de5bbb9ccb886 (diff)
downloadComputeLibrary-e91abd712cded6f7185e2e8b8f4c3a841883e0a8.tar.gz
COMPMID-959 : Disables HogDetector test on CL
Change-Id: Ief1d7060a224a05805a7fc9b409ba17fc90e6502 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/128982 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/validation/CL/HOGDetector.cpp')
-rw-r--r--tests/validation/CL/HOGDetector.cpp25
1 files changed, 13 insertions, 12 deletions
diff --git a/tests/validation/CL/HOGDetector.cpp b/tests/validation/CL/HOGDetector.cpp
index 6c2c18c3ea..dcf35091a1 100644
--- a/tests/validation/CL/HOGDetector.cpp
+++ b/tests/validation/CL/HOGDetector.cpp
@@ -65,24 +65,25 @@ using CLHOGDetectorFixture = HOGDetectorValidationFixture<CLTensor,
uint8_t,
float>;
-FIXTURE_DATA_TEST_CASE(RunSmall, CLHOGDetectorFixture, framework::DatasetMode::PRECOMMIT,
- combine(combine(combine(
- DetectionWindowStrideDataset,
- datasets::SmallHOGDescriptorDataset()),
- framework::dataset::make("Format", Format::U8)),
- framework::dataset::make("BorderMode", {BorderMode::CONSTANT, BorderMode::REPLICATE})))
+// TODO (COMPMID-1087) : CLHOGDetector fails on hikey
+DISABLED_FIXTURE_DATA_TEST_CASE(RunSmall, CLHOGDetectorFixture, framework::DatasetMode::PRECOMMIT,
+ combine(combine(combine(
+ DetectionWindowStrideDataset,
+ datasets::SmallHOGDescriptorDataset()),
+ framework::dataset::make("Format", Format::U8)),
+ framework::dataset::make("BorderMode", {BorderMode::CONSTANT, BorderMode::REPLICATE})))
{
// Validate output
validate_detection_windows(_target.begin(), _target.end(), _reference.begin(), _reference.end(), tolerance);
}
-FIXTURE_DATA_TEST_CASE(RunLarge, CLHOGDetectorFixture, framework::DatasetMode::NIGHTLY,
- combine(combine(combine(
- DetectionWindowStrideDataset,
- datasets::LargeHOGDescriptorDataset()),
- framework::dataset::make("Format", Format::U8)),
- framework::dataset::make("BorderMode", {BorderMode::CONSTANT, BorderMode::REPLICATE})))
+DISABLED_FIXTURE_DATA_TEST_CASE(RunLarge, CLHOGDetectorFixture, framework::DatasetMode::NIGHTLY,
+ combine(combine(combine(
+ DetectionWindowStrideDataset,
+ datasets::LargeHOGDescriptorDataset()),
+ framework::dataset::make("Format", Format::U8)),
+ framework::dataset::make("BorderMode", {BorderMode::CONSTANT, BorderMode::REPLICATE})))
{
// Validate output
validate_detection_windows(_target.begin(), _target.end(), _reference.begin(), _reference.end(), tolerance);