aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2018-08-16 11:47:45 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commitc1961b51df2e15a01a5950139e81bbd47fbfa627 (patch)
tree9e96345605c4fa79d3bc4865b6c68f3e13335bd5 /tests/validation/fixtures
parent25f45a4a0158a709d28a5207a867a9b5ce390621 (diff)
downloadComputeLibrary-c1961b51df2e15a01a5950139e81bbd47fbfa627.tar.gz
COMPMID-1509: (Nightly) CLDeconvolution fails for QASYMM8
Using same quantization info and input values range as for ConvolutionLayer. This needs further investigation to understand why there are mismatches when using the entire range. Change-Id: I8c20a341b29a1ac03c811d014911e7efc484c3a6 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/144340 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'tests/validation/fixtures')
-rw-r--r--tests/validation/fixtures/DeconvolutionLayerFixture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/fixtures/DeconvolutionLayerFixture.h b/tests/validation/fixtures/DeconvolutionLayerFixture.h
index 7741557f48..6a8b4f220c 100644
--- a/tests/validation/fixtures/DeconvolutionLayerFixture.h
+++ b/tests/validation/fixtures/DeconvolutionLayerFixture.h
@@ -64,7 +64,7 @@ protected:
{
case DataType::QASYMM8:
{
- std::uniform_int_distribution<uint8_t> distribution(0, 255);
+ std::uniform_int_distribution<uint8_t> distribution(0, 3);
library->fill(tensor, distribution, i);
break;
}