From 4e1c3f336133319cfe45b037befdb252ffd9b744 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Thu, 20 Sep 2018 17:14:03 +0100 Subject: COMPMID-1595 Add UpsampleLayer to graph API Change-Id: I7427b0fbb222ff9760d47b01a59aee654f2f860f Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/149587 Tested-by: bsgcomp Reviewed-by: Georgios Pinitas --- arm_compute/graph/backends/ValidateHelpers.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'arm_compute/graph/backends/ValidateHelpers.h') diff --git a/arm_compute/graph/backends/ValidateHelpers.h b/arm_compute/graph/backends/ValidateHelpers.h index 2dc349174d..ff644c4946 100644 --- a/arm_compute/graph/backends/ValidateHelpers.h +++ b/arm_compute/graph/backends/ValidateHelpers.h @@ -273,6 +273,28 @@ Status validate_slice_layer(SliceLayerNode &node) return SliceLayer::validate(input, output, starts, ends); } +/** Validates a Upsample layer node + * + * @tparam UpsampleLayer Upsample layer type + * + * @param[in] node Node to validate + * + * @return Status + */ +template +Status validate_upsample_layer(UpsampleLayerNode &node) +{ + ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating UpsampleLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl); + ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1); + ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1); + + // Extract input and output + arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0)); + arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0)); + + // Validate function + return UpsampleLayer::validate(input, output, node.info(), node.upsampling_policy()); +} /** Validates a YOLO layer node * * @tparam YOLOLayer YOLO layer type -- cgit v1.2.1