From 4bdd177c75789451cad9ba1ecf929214ed75c009 Mon Sep 17 00:00:00 2001 From: Giorgio Arena Date: Thu, 17 Dec 2020 16:47:07 +0000 Subject: Fix fill() for FP data type in fixtures - Part 2 Resolves: COMPMID-4056 Signed-off-by: Giorgio Arena Change-Id: I6623eb9c0e66e52af4e0e9fb386031f4a09125b7 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4722 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- tests/validation/fixtures/AccumulateFixture.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/validation/fixtures/AccumulateFixture.h') diff --git a/tests/validation/fixtures/AccumulateFixture.h b/tests/validation/fixtures/AccumulateFixture.h index 8fa6689277..7cea29c15d 100644 --- a/tests/validation/fixtures/AccumulateFixture.h +++ b/tests/validation/fixtures/AccumulateFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 Arm Limited. + * Copyright (c) 2017-2020 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -139,8 +139,8 @@ public: template void setup(TensorShape shape, DataType data_type, DataType output_data_type) { - std::mt19937 gen(library->seed()); - std::uniform_real_distribution<> float_dist(0, 1); + std::mt19937 gen(library->seed()); + std::uniform_real_distribution float_dist(0, 1); _alpha = float_dist(gen); -- cgit v1.2.1