// Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include #include #include #include #include #include static enum xnn_status create_depth_to_space_operator( const struct xnn_node* node, const struct xnn_value* values, size_t num_values, struct xnn_operator_data* opdata) { assert(node->compute_type == xnn_compute_type_fp32); assert(node->num_inputs == 1); const uint32_t input_id = node->inputs[0]; assert(input_id != XNN_INVALID_VALUE_ID); assert(input_id < num_values); assert(node->num_outputs == 1); const uint32_t output_id = node->outputs[0]; assert(output_id != XNN_INVALID_VALUE_ID); assert(output_id < num_values); const size_t input_channel_dim = values[input_id].shape.dim[3]; const size_t output_channel_dim = values[output_id].shape.dim[3]; enum xnn_status status; if (values[input_id].layout == xnn_layout_type_nchw) { assert(values[output_id].layout == xnn_layout_type_nhwc); status = xnn_create_depth_to_space_nchw2nhwc_x32( output_channel_dim /* output channels */, input_channel_dim /* input stride */, output_channel_dim /* output stride */, node->params.depth_to_space.block_size, node->flags, &opdata->operator_object); } else { assert(values[input_id].layout == xnn_layout_type_nhwc); assert(values[output_id].layout == xnn_layout_type_nhwc); status = xnn_create_depth_to_space_nhwc_x32( output_channel_dim /* output channels */, input_channel_dim /* input stride */, output_channel_dim /* output stride */, node->params.depth_to_space.block_size, node->flags, &opdata->operator_object); } if (status == xnn_status_success) { opdata->batch_size = values[input_id].shape.dim[0]; opdata->input_height = values[input_id].shape.dim[1]; opdata->input_width = values[input_id].shape.dim[2]; opdata->output_height = values[output_id].shape.dim[1]; opdata->output_width = values[output_id].shape.dim[2]; opdata->inputs[0] = input_id; opdata->outputs[0] = output_id; } return status; } static enum xnn_status setup_depth_to_space_operator( const struct xnn_operator_data* opdata, const struct xnn_blob* blobs, size_t num_blobs, pthreadpool_t threadpool) { const uint32_t input_id = opdata->inputs[0]; assert(input_id != XNN_INVALID_VALUE_ID); assert(input_id < num_blobs); const uint32_t output_id = opdata->outputs[0]; assert(output_id != XNN_INVALID_VALUE_ID); assert(output_id < num_blobs); const struct xnn_blob* input_blob = blobs + input_id; const void* input_data = input_blob->data; assert(input_data != NULL); const struct xnn_blob* output_blob = blobs + output_id; void* output_data = output_blob->data; assert(output_data != NULL); switch (opdata->operator_object->type) { case xnn_operator_type_depth_to_space_nchw2nhwc_x32: return xnn_setup_depth_to_space_nchw2nhwc_x32( opdata->operator_object, opdata->batch_size, opdata->input_height, opdata->input_width, input_data, output_data, threadpool); case xnn_operator_type_depth_to_space_nhwc_x32: return xnn_setup_depth_to_space_nhwc_x32( opdata->operator_object, opdata->batch_size, opdata->input_height, opdata->input_width, input_data, output_data, threadpool); default: XNN_UNREACHABLE; } } enum xnn_status xnn_define_depth_to_space( xnn_subgraph_t subgraph, uint32_t input_id, uint32_t output_id, uint32_t block_size, uint32_t flags) { if ((xnn_params.init_flags & XNN_INIT_FLAG_XNNPACK) == 0) { xnn_log_error("failed to define %s operator: XNNPACK is not initialized", xnn_node_type_to_string(xnn_node_type_depth_to_space)); return xnn_status_uninitialized; } if (input_id >= subgraph->num_values) { xnn_log_error( "failed to define %s operator with input ID #%" PRIu32 ": invalid Value ID", xnn_node_type_to_string(xnn_node_type_depth_to_space), input_id); return xnn_status_invalid_parameter; } const struct xnn_value* input_value = &subgraph->values[input_id]; if (input_value->type != xnn_value_type_dense_tensor) { xnn_log_error( "failed to define %s operator with input ID #%" PRIu32 ": unsupported Value type %d (expected dense tensor)", xnn_node_type_to_string(xnn_node_type_depth_to_space), input_id, input_value->type); return xnn_status_invalid_parameter; } switch (input_value->datatype) { case xnn_datatype_fp32: break; default: xnn_log_error( "failed to define %s operator with input ID #%" PRIu32 ": unsupported Value datatype %s (%d)", xnn_node_type_to_string(xnn_node_type_depth_to_space), input_id, xnn_datatype_to_string(input_value->datatype), input_value->datatype); return xnn_status_invalid_parameter; } if (output_id >= subgraph->num_values) { xnn_log_error( "failed to define %s operator with output ID #%" PRIu32 ": invalid Value ID", xnn_node_type_to_string(xnn_node_type_depth_to_space), output_id); return xnn_status_invalid_parameter; } const struct xnn_value* output_value = &subgraph->values[output_id]; if (output_value->type != xnn_value_type_dense_tensor) { xnn_log_error( "failed to define %s operator with output ID #%" PRIu32 ": unsupported Value type %d (expected dense tensor)", xnn_node_type_to_string(xnn_node_type_depth_to_space), output_id, output_value->type); return xnn_status_invalid_parameter; } switch (output_value->datatype) { case xnn_datatype_fp32: break; default: xnn_log_error( "failed to define %s operator with output ID #%" PRIu32 ": unsupported Value datatype %s (%d)", xnn_node_type_to_string(xnn_node_type_depth_to_space), output_id, xnn_datatype_to_string(output_value->datatype), output_value->datatype); return xnn_status_invalid_parameter; } if (block_size < 2) { xnn_log_error( "failed to define %s operator with block size #%" PRIu32 ": invalid block_size", xnn_node_type_to_string(xnn_node_type_depth_to_space), block_size); return xnn_status_invalid_parameter; } struct xnn_node* node = xnn_subgraph_new_node(subgraph); if (node == NULL) { return xnn_status_out_of_memory; } node->type = xnn_node_type_depth_to_space; node->compute_type = xnn_compute_type_fp32; node->num_inputs = 1; node->inputs[0] = input_id; node->num_outputs = 1; node->outputs[0] = output_id; node->params.depth_to_space.block_size = block_size; node->flags = flags; node->create = create_depth_to_space_operator; node->setup = setup_depth_to_space_operator; return xnn_status_success; }