f15460b1创建于 2025年3月25日历史提交
// Copyright (c) 2023 Huawei Technologies Co., Ltd
// Copyright (c) 2019, Facebook CORPORATION.
// All rights reserved.
//
// Licensed under the BSD 3-Clause License  (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://opensource.org/licenses/BSD-3-Clause
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "op_plugin/AclOpsInterface.h"
#include "op_plugin/utils/OpAdapter.h"

namespace acl_op {
using npu_preparation = at_npu::native::OpPreparation;
using npu_utils = at_npu::native::NpuUtils;
using small_vector = c10::SmallVector<int64_t, SIZE>;

namespace {
small_vector slow_conv_transpose2d_npu_output_size(const at::Tensor &self, const at::Tensor &weight,
                                                   at::IntArrayRef kernel_size,
                                                   at::IntArrayRef stride, at::IntArrayRef padding,
                                                   at::IntArrayRef output_padding, at::IntArrayRef dilation)
{
    int ndim = self.dim();
    int dimh = 1;
    int dimw = 2;
    auto flag = 4;
    auto flag_a = 3;

    if (ndim == flag) {
        dimh++;
        dimw++;
    }

    TORCH_CHECK(self.numel() != 0 && (ndim == flag_a || ndim == flag),
        "non-empty 3D or 4D input tensor expected but got a tensor with size ", self.sizes(),
        OPS_ERROR(ErrCode::PARAM));
    int64_t N = self.size(0);
    int64_t Co = weight.size(1);
    int64_t H = self.size(dimh);
    int64_t W = self.size(dimw);

    int64_t Ho = (H - 1) * stride[0] - 2 * padding[0] + dilation[0] * (kernel_size[0] - 1) + output_padding[0] + 1;
    int64_t Wo = (W - 1) * stride[1] - 2 * padding[1] + dilation[1] * (kernel_size[1] - 1) + output_padding[1] + 1;

    c10::SmallVector<int64_t, SIZE> output_size = {N, Co, Ho, Wo};

    return output_size;
}

inline void slow_conv_transpose2d_shape_check(const at::Tensor &weight,
                                              at::IntArrayRef kernel_size, const at::Tensor &bias,
                                              at::IntArrayRef stride, at::IntArrayRef padding,
                                              at::IntArrayRef output_padding, at::IntArrayRef dilation)
{
    TORCH_CHECK(kernel_size[0] > 0 && kernel_size[1] > 0,
        "kernel size should be greater than zero, but got kernel_height: ", kernel_size[0],
        " kernel_width: ", kernel_size[1], OPS_ERROR(ErrCode::PARAM));
    TORCH_CHECK(stride[0] > 0 && stride[1] > 0,
        "stride should be greater than zero, but got stride_height: ", stride[0], " stride_width: ", stride[1],
        OPS_ERROR(ErrCode::PARAM));
    TORCH_CHECK(dilation[0] > 0 && dilation[1] > 0,
        "dilation should be greater than zero, but got dilation_height: ", dilation[0],
        ", dilation_width: ", dilation[1], OPS_ERROR(ErrCode::PARAM));
    TORCH_CHECK((output_padding[1] < stride[1] || output_padding[1] < dilation[1]) &&
                (output_padding[0] < stride[0] || output_padding[0] < dilation[0]),
                "output padding must be smaller than either stride or dilation, but got output_padding_height: ",
                output_padding[0], " output_padding_width: ", output_padding[1], " stride_height: ", stride[0],
                " stride_width: ", stride[1], " dilation_height: ", dilation[0], " dilation_width: ", dilation[1],
                OPS_ERROR(ErrCode::PARAM));

    auto flag_a = 2;
    auto flag_b = 4;

    TORCH_CHECK(weight.numel() != 0 && (weight.dim() == flag_a || weight.dim() == flag_b),
                "non-empty 2D or 4D weight tensor expected, but got: ", weight.sizes(), OPS_ERROR(ErrCode::PARAM));
    if (bias.defined()) {
        check_dim_size(bias, 1, 0, weight.size(1));
    }

    TORCH_CHECK(kernel_size.size() == flag_a, "It is expected kernel_size equals to 2, but got size ",
                kernel_size.size(), OPS_ERROR(ErrCode::PARAM));

    TORCH_CHECK(dilation.size() == flag_a, "It is expected dilation equals to 2, but got size ", dilation.size(),
        OPS_ERROR(ErrCode::PARAM));

    TORCH_CHECK(padding.size() == flag_a, "It is expected padding equals to 2, but got size ", padding.size(),
        OPS_ERROR(ErrCode::PARAM));

    TORCH_CHECK(stride.size() == flag_a, "It is expected stride equals to 2, but got size ", stride.size(),
        OPS_ERROR(ErrCode::PARAM));

    TORCH_CHECK(output_padding.size() == flag_a, "It is expected stride equals to 2, but got size ",
                output_padding.size(), OPS_ERROR(ErrCode::PARAM));
}

at::Tensor &slow_conv_transpose2d_out_nocheck(at::Tensor &out, const at::Tensor &self, const at::Tensor &weight,
                                              at::IntArrayRef kernel_size, const c10::optional<at::Tensor> &bias_opt,
                                              at::IntArrayRef stride, at::IntArrayRef padding,
                                              at::IntArrayRef output_padding, at::IntArrayRef dilation)
{
    const at::Tensor &bias = c10::value_or_else(bias_opt, [] { return at::Tensor(); });
    slow_conv_transpose2d_shape_check(weight, kernel_size, bias, stride, padding, output_padding, dilation);

    auto output_size = slow_conv_transpose2d_npu_output_size(self, weight, kernel_size, stride, padding,
                                                             output_padding, dilation);
    if (!out.sizes().equals(output_size)) {
        out.resize_(output_size);
    }

    TORCH_CHECK(stride.size() >= 2, "stride size must bigger than 2." + OPS_ERROR(ErrCode::PARAM));
    TORCH_CHECK(padding.size() >= 2, "padding size must bigger than 2." + OPS_ERROR(ErrCode::PARAM));
    TORCH_CHECK(dilation.size() >= 2, "dilation size must bigger than 2." + OPS_ERROR(ErrCode::PARAM));
    c10::SmallVector<int64_t, N> paddings = {padding[0], padding[0], padding[1], padding[1]};
    c10::SmallVector<int64_t, N> strides_size = {1, 1, stride[0], stride[1]};
    c10::SmallVector<int64_t, N> dilations = {1, 1, dilation[0], dilation[1]};
    c10::SmallVector<int64_t, N> outputpadding = {output_padding[0], output_padding[0], output_padding[1],
                                                  output_padding[1]};
    string data_formats = "NCHW";
    int64_t groups = 1;
    c10::SmallVector<int64_t, N> size_vec = op_infer::array_to_small_vector(out.sizes());
    at_npu::native::OpCommand cmd;
    cmd.Name("Conv2DTranspose").Input(size_vec, at::kInt).Input(self, "x").Input(weight, "filter");
    if (bias.defined()) {
        cmd.Input(bias);
    }
    cmd.Output(out, "y")
        .Attr("pads", paddings)
        .Attr("output_padding", outputpadding)
        .Attr("strides", strides_size)
        .Attr("dilations", dilations)
        .Attr("groups", groups)
        .Attr("data_format", data_formats)
        .Run();
    return out;
}
} // namespace

at::Tensor &slow_conv_transpose2d_out(const at::Tensor &self, const at::Tensor &weight, at::IntArrayRef kernel_size,
                                      const c10::optional<at::Tensor> &bias, at::IntArrayRef stride,
                                      at::IntArrayRef padding, at::IntArrayRef output_padding, at::IntArrayRef dilation,
                                      at::Tensor &out)
{
    const at::Tensor &bias_value_or = c10::value_or_else(bias, [] { return at::Tensor(); });
    auto output_size = slow_conv_transpose2d_npu_output_size(self, weight, kernel_size, stride, padding,
                                                             output_padding, dilation);

    int64_t out_format = self.dtype() == at::kHalf ? ACL_FORMAT_NC1HWC0 : ACL_FORMAT_ND;
    if (bias_value_or.defined()) {
        npu_preparation::CheckOut({self, weight, bias_value_or}, {out}, out_format, self.scalar_type(), output_size);
    } else {
        npu_preparation::CheckOut({self, weight}, {out}, out_format, self.scalar_type(), output_size);
    }

    if (!npu_utils::check_match(&out)) {
        at::Tensor contiguous_out = npu_utils::format_contiguous(out);
        slow_conv_transpose2d_out_nocheck(contiguous_out, self, weight, kernel_size, bias, stride, padding,
                                          output_padding, dilation);
        npu_utils::format_fresh_view(out, contiguous_out);
    } else {
        slow_conv_transpose2d_out_nocheck(out, self, weight, kernel_size, bias, stride, padding, output_padding,
                                          dilation);
    }
    return out;
}

at::Tensor slow_conv_transpose2d(const at::Tensor &self, const at::Tensor &weight, at::IntArrayRef kernel_size,
                                 const c10::optional<at::Tensor> &bias, at::IntArrayRef stride,
                                 at::IntArrayRef padding, at::IntArrayRef output_padding, at::IntArrayRef dilation)
{
    auto output_size = slow_conv_transpose2d_npu_output_size(self, weight, kernel_size, stride, padding,
                                                             output_padding, dilation);

    int64_t result_format = self.dtype() == at::kHalf ? ACL_FORMAT_NC1HWC0 : ACL_FORMAT_ND;
    at::Tensor result = npu_preparation::apply_tensor_with_format(self, output_size, result_format);
    slow_conv_transpose2d_out_nocheck(result, self, weight, kernel_size, bias, stride, padding, output_padding,
                                      dilation);

    return result;
}
} // namespace acl_op