* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
#include "nlohmann/json.hpp"
#include "onnx_common.h"
#include "op_math_proto_extend.h"
namespace domi {
static Status ParseOnnxParamsCorr(const Message* op_src, ge::Operator& op_dest)
{
OP_LOGD(GetOpName(op_dest).c_str(), "start ParseOnnxParamsCorr");
const ge::onnx::NodeProto* node = dynamic_cast<const ge::onnx::NodeProto*>(op_src);
if (node == nullptr) {
OP_LOGE(GetOpName(op_dest).c_str(), "Dynamic cast op_src to NodeProto failed.");
return FAILED;
}
int64_t groups = 1;
std::vector<int> axes = {};
for (const auto& attr : node->attribute()) {
if (attr.name() == "groups" && attr.type() == ge::onnx::AttributeProto::INT) {
groups = attr.i();
}
}
op_dest.SetAttr("name", node->name());
op_dest.SetAttr("groups", groups);
const int input_number = 2;
op_dest.DynamicInputRegister("x", input_number);
op_dest.DynamicOutputRegister("y", 1);
op_dest.SetAttr("original_type", "ai.onnx::11::Corr");
return SUCCESS;
}
static Status ParseOpToGraphCorr(const ge::Operator& op, ge::Graph& graph)
{
OP_LOGD(GetOpName(op).c_str(), "start ParseOpToGraphCorr");
std::string ori_name;
if (op.GetAttr("name", ori_name) != SUCCESS) {
OP_LOGE(GetOpName(op).c_str(), "get name from op failed.");
return FAILED;
}
auto data0 = ge::op::Data((ori_name + "_data0").c_str()).set_attr_index(0);
auto data1 = ge::op::Data((ori_name + "_data1").c_str()).set_attr_index(1);
auto correlation = ge::op::Correlation((ori_name + "_Correlation").c_str());
ge::Operator& new_op = const_cast<ge::Operator&>(op);
ge::TensorDesc orgTensorX = op.GetInputDescByName("x");
orgTensorX.SetOriginFormat(ge::FORMAT_NCHW);
orgTensorX.SetFormat(ge::FORMAT_NCHW);
new_op.UpdateInputDesc("x", orgTensorX);
ge::TensorDesc orgTensorFilter = op.GetInputDescByName("filter");
orgTensorFilter.SetOriginFormat(ge::FORMAT_NCHW);
orgTensorFilter.SetFormat(ge::FORMAT_NCHW);
new_op.UpdateInputDesc("filter", orgTensorFilter);
ge::TensorDesc orgTensorY = op.GetOutputDescByName("y");
orgTensorY.SetOriginFormat(ge::FORMAT_NCHW);
orgTensorY.SetFormat(ge::FORMAT_NCHW);
new_op.UpdateOutputDesc("y", orgTensorY);
correlation.set_input_x(data0);
correlation.set_input_filter(data1);
int groups = 1;
if (op.GetAttr("groups", groups) != SUCCESS) {
OP_LOGE(GetOpName(op).c_str(), "get groups from op failed");
return FAILED;
}
correlation.set_attr_groups(groups);
std::vector<ge::Operator> inputs{data0, data1};
std::vector<std::pair<ge::Operator, std::vector<size_t>>> outputs;
outputs.emplace_back(correlation, std::vector<std::size_t>{0});
graph.SetInputs(inputs);
graph.SetOutputs(outputs);
return SUCCESS;
}
REGISTER_CUSTOM_OP("PartitionedCall")
.FrameworkType(ONNX)
.OriginOpType({ge::AscendString("ai.onnx::8::Corr"),
ge::AscendString("ai.onnx::9::Corr"),
ge::AscendString("ai.onnx::10::Corr"),
ge::AscendString("ai.onnx::11::Corr"),
ge::AscendString("ai.onnx::12::Corr"),
ge::AscendString("ai.onnx::13::Corr"),
ge::AscendString("ai.onnx::14::Corr"),
ge::AscendString("ai.onnx::15::Corr"),
ge::AscendString("ai.onnx::16::Corr")})
.ParseParamsFn(ParseOnnxParamsCorr)
.ParseOpToGraphFn(ParseOpToGraphCorr)
.ImplyType(ImplyType::TVM);
}