aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/FlattenLayerFixture.h
diff options
context:
space:
mode:
authorVidhya Sudhan Loganathan <vidhyasudhan.loganathan@arm.com>2018-07-02 09:13:49 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:10 +0000
commit014333d73883c3872e458cedda5ccef586a7ccd4 (patch)
tree0f28bbc1ab769993af91b40e4584061f6ed6d3fa /tests/validation/fixtures/FlattenLayerFixture.h
parentde01468bbfff3a7d8bcbba3bfdf5698fb2e3b267 (diff)
downloadComputeLibrary-014333d73883c3872e458cedda5ccef586a7ccd4.tar.gz
COMPMID-970 : Remove QS8 / QS16 support
Removed Fixed point position arguments from test sources Change-Id: I8343724723b71611fd501ed34de0866d3fb60e7e Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/136382 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Michele DiGiorgio <michele.digiorgio@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'tests/validation/fixtures/FlattenLayerFixture.h')
-rw-r--r--tests/validation/fixtures/FlattenLayerFixture.h24
1 files changed, 6 insertions, 18 deletions
diff --git a/tests/validation/fixtures/FlattenLayerFixture.h b/tests/validation/fixtures/FlattenLayerFixture.h
index ef94ea83b0..f273e9315c 100644
--- a/tests/validation/fixtures/FlattenLayerFixture.h
+++ b/tests/validation/fixtures/FlattenLayerFixture.h
@@ -53,10 +53,8 @@ public:
template <typename...>
void setup(TensorShape shape, DataType data_type)
{
- _fractional_bits = is_data_type_fixed_point(data_type) ? 4 : 0;
-
TensorShape shape_flatten;
- TensorInfo input_info(shape, 1, data_type, _fractional_bits);
+ TensorInfo input_info(shape, 1, data_type);
shape_flatten = compute_im2col_flatten_shape(&input_info);
_target = compute_target(shape, shape_flatten, data_type);
@@ -68,24 +66,15 @@ protected:
template <typename U>
void fill(U &&tensor)
{
- if(_fractional_bits == 0)
- {
- std::uniform_real_distribution<> distribution(-1.f, 1.f);
- library->fill(tensor, distribution, 0);
- }
- else
- {
- const int one_fixed = 1 << _fractional_bits;
- std::uniform_int_distribution<> distribution(-one_fixed, one_fixed);
- library->fill(tensor, distribution, 0);
- }
+ std::uniform_real_distribution<> distribution(-1.f, 1.f);
+ library->fill(tensor, distribution, 0);
}
TensorType compute_target(const TensorShape &shape, const TensorShape &shape_flatten, DataType data_type)
{
// Create tensors
- TensorType src = create_tensor<TensorType>(shape, data_type, 1, _fractional_bits);
- TensorType dst = create_tensor<TensorType>(shape_flatten, data_type, 1, _fractional_bits);
+ TensorType src = create_tensor<TensorType>(shape, data_type, 1);
+ TensorType dst = create_tensor<TensorType>(shape_flatten, data_type, 1);
// Create and configure function
FunctionType flatten_layer;
@@ -113,7 +102,7 @@ protected:
SimpleTensor<T> compute_reference(const TensorShape &shape, const TensorShape &shape_flatten, DataType data_type)
{
// Create reference
- SimpleTensor<T> src{ shape, data_type, 1, _fractional_bits };
+ SimpleTensor<T> src{ shape, data_type, 1 };
// Fill reference
fill(src);
@@ -123,7 +112,6 @@ protected:
TensorType _target{};
SimpleTensor<T> _reference{};
- int _fractional_bits{};
};
} // namespace validation
} // namespace test