aboutsummaryrefslogtreecommitdiff
path: root/src/core/Utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Utils.cpp')
-rw-r--r--src/core/Utils.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/Utils.cpp b/src/core/Utils.cpp
index a6a5771ec1..41fc87e87a 100644
--- a/src/core/Utils.cpp
+++ b/src/core/Utils.cpp
@@ -323,15 +323,6 @@ PadStrideInfo arm_compute::calculate_same_pad(TensorShape input_shape, TensorSha
return PadStrideInfo(strides.first, strides.second, same_pad_left, same_pad_right, same_pad_top, same_pad_bottom, DimensionRoundingType::CEIL);
}
-TensorShape arm_compute::deconvolution_output_shape(const std::pair<unsigned int, unsigned int> &out_dims, TensorShape input, TensorShape weights)
-{
- TensorShape out_shape(input);
- out_shape.set(0, out_dims.first);
- out_shape.set(1, out_dims.second);
- out_shape.set(2, weights[3]);
- return out_shape;
-}
-
const std::pair<unsigned int, unsigned int> arm_compute::deconvolution_output_dimensions(
unsigned int in_width, unsigned int in_height, unsigned int kernel_width, unsigned int kernel_height, unsigned int padx, unsigned int pady,
unsigned int stride_x, unsigned int stride_y)