aboutsummaryrefslogtreecommitdiff
path: root/tests/NEON
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/NEON
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/NEON')
-rw-r--r--tests/NEON/Helper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/NEON/Helper.h b/tests/NEON/Helper.h
index b9f961243a..c30cbc9ca9 100644
--- a/tests/NEON/Helper.h
+++ b/tests/NEON/Helper.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2018 ARM Limited.
+ * Copyright (c) 2017-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -84,7 +84,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());
}
};