aboutsummaryrefslogtreecommitdiff
path: root/tests/CL
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2019-01-15 13:21:57 +0000
committerManuel Bottini <manuel.bottini@arm.com>2019-01-15 14:34:22 +0000
commit55e167814d462a803dbac82db17603cbe1258b4f (patch)
tree0fdac6c635a3797b67ebdedfced16f88d8fa3497 /tests/CL
parent254a48a303ab0a8497849d7d8b4d2ad3ab88461a (diff)
downloadComputeLibrary-55e167814d462a803dbac82db17603cbe1258b4f.tar.gz
COMPMID-1724: CL Implement Prod fix
Change-Id: I9cf07afe6198e3364ede06faaa9a09a782a34792 Reviewed-on: https://review.mlplatform.org/519 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com>
Diffstat (limited to 'tests/CL')
-rw-r--r--tests/CL/Helper.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/CL/Helper.h b/tests/CL/Helper.h
index 88e716726a..ab2f8ccb22 100644
--- a/tests/CL/Helper.h
+++ b/tests/CL/Helper.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2018 ARM Limited.
+ * Copyright (c) 2017-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -80,7 +80,7 @@ public:
auto k = arm_compute::support::cpp14::make_unique<K>();
k->configure(first, std::forward<Args>(args)...);
_kernel = std::move(k);
- _border_handler.configure(first, BorderSize(bordersize), BorderMode::CONSTANT, PixelValue(0));
+ _border_handler.configure(first, BorderSize(bordersize), BorderMode::CONSTANT, PixelValue());
}
};
@@ -102,8 +102,8 @@ public:
k->set_target(CLScheduler::get().target());
k->configure(first, second, std::forward<Args>(args)...);
_kernel = std::move(k);
- _border_handler.configure(first, BorderSize(bordersize), BorderMode::CONSTANT, PixelValue(0));
- _memset_kernel.configure(second, PixelValue(0));
+ _border_handler.configure(first, BorderSize(bordersize), BorderMode::CONSTANT, PixelValue());
+ _memset_kernel.configure(second, PixelValue());
}
// Inherited method overridden: