aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/GLES_COMPUTE/SoftmaxLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/GLES_COMPUTE/SoftmaxLayer.cpp')
-rw-r--r--tests/validation/GLES_COMPUTE/SoftmaxLayer.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/validation/GLES_COMPUTE/SoftmaxLayer.cpp b/tests/validation/GLES_COMPUTE/SoftmaxLayer.cpp
index 2c281419de..abc277aaa9 100644
--- a/tests/validation/GLES_COMPUTE/SoftmaxLayer.cpp
+++ b/tests/validation/GLES_COMPUTE/SoftmaxLayer.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -59,12 +59,9 @@ TEST_SUITE(SoftmaxLayer)
DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(concat(datasets::SoftmaxLayerSmallShapes(), datasets::SoftmaxLayerLargeShapes()), CNNDataTypes), shape, data_type)
{
- // Set fixed point position data type allowed
- const int fixed_point_position = is_data_type_fixed_point(data_type) ? 3 : 0;
-
// Create tensors
- GCTensor src = create_tensor<GCTensor>(shape, data_type, 1, fixed_point_position);
- GCTensor dst = create_tensor<GCTensor>(shape, data_type, 1, fixed_point_position);
+ GCTensor src = create_tensor<GCTensor>(shape, data_type, 1);
+ GCTensor dst = create_tensor<GCTensor>(shape, data_type, 1);
ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);