aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/CopyFixture.h
diff options
context:
space:
mode:
authorSang-Hoon Park <sang-hoon.park@arm.com>2020-03-31 15:59:41 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2020-04-28 18:30:41 +0000
commit06cf9339ed4b86d559c837dcb7c1c273ae6a35eb (patch)
tree08380f00a37152c7fe589d58e6693bec3c00b1ff /tests/validation/fixtures/CopyFixture.h
parent6a1db9b25ed3a37449fdbc8479c6d3700fd157de (diff)
downloadComputeLibrary-06cf9339ed4b86d559c837dcb7c1c273ae6a35eb.tar.gz
COMPMID-3294: Add AssetLibrary instance using a fixed seed
- Add fixed_seed instance for future use - Make Copy fixture use the new instance to validate functionality Change-Id: I7e8c1504b8db3203213d084b300f10ecd384f7fa Signed-off-by: Sang-Hoon Park <sang-hoon.park@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3107 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/validation/fixtures/CopyFixture.h')
-rw-r--r--tests/validation/fixtures/CopyFixture.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/validation/fixtures/CopyFixture.h b/tests/validation/fixtures/CopyFixture.h
index 911d908e53..534d5b3145 100644
--- a/tests/validation/fixtures/CopyFixture.h
+++ b/tests/validation/fixtures/CopyFixture.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -54,7 +54,8 @@ protected:
template <typename U>
void fill(U &&tensor, int i)
{
- library->fill_tensor_uniform(tensor, i);
+ // This kernel doesn't benefit from using random seed as it just copies values.
+ fixed_library->fill_tensor_uniform(tensor, i);
}
TensorType compute_target(const TensorShape &input_shape, const TensorShape &output_shape, DataType data_type)