* 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 "cast_v2_api_call.h"
#include <sstream>
#include "attr_utils.h"
#include "ascir_ops.h"
#include "common_utils.h"
#include "common/ge_common/debug/log.h"
#include "graph/ascendc_ir/utils/asc_tensor_utils.h"
#include "common/checker.h"
#include "api_call/utils/api_call_factory.h"
#include "api_call/utils/api_call_utils.h"
namespace codegen {
using namespace std;
using namespace af::ops;
using namespace af::ascir_op;
using namespace ascgen_utils;
Status CastV2ApiCall::Generate(const TPipe &tpipe, const std::vector<ascir::AxisId> ¤t_axis,
const std::vector<std::reference_wrapper<const Tensor>> &inputs,
const std::vector<std::reference_wrapper<const Tensor>> &outputs,
std::string &result) const {
(void)this->api_name_;
auto x = inputs[0].get();
auto y = outputs[0].get();
GELOGD("x, is_constant:%d", static_cast<int32_t>(x.is_constant));
GELOGI("cast x_dtype:%d, y.dtype:%d.", static_cast<int32_t>(x.dtype), static_cast<int32_t>(y.dtype));
GE_ASSERT_TRUE((x.dtype != y.dtype), "cast s_dtype:%d, y.dtype:%d", static_cast<int32_t>(x.dtype),
static_cast<int32_t>(y.dtype));
std::string x_dtype;
std::string y_dtype;
GE_CHK_STATUS_RET(Tensor::DtypeName(x.dtype, x_dtype), "get name of dtype:%d failed", static_cast<int32_t>(x.dtype));
GE_CHK_STATUS_RET(Tensor::DtypeName(y.dtype, y_dtype), "get name of dtype:%d failed", static_cast<int32_t>(y.dtype));
ApiLoopParams param;
std::vector<Tensor> ub_inputs;
std::vector<Tensor> ub_outputs;
if (!x.is_constant) {
ub_inputs.push_back(x);
}
ub_outputs.push_back(y);
VectorizedAxisLoopMergeStatus merge_info;
bool status = GenerateVectorizedAxisMergeStatus(ub_inputs, ub_outputs, merge_info, tpipe);
GE_ASSERT_TRUE(status, "GenerateVectorizedAxisMergeStatus failed");
SaveApiLoopAxisParams(merge_info, param);
stringstream ss;
size_t outer_repeats_size = param.outer_repeats.size();
std::string scalar_local_blk_tensor_name = "local_blk_tensor_of_" + x.name;
if (outer_repeats_size == 0U) {
GELOGD("outer_repeats_size is 0, x_dtype = %s, y_dtype = %s", x_dtype.c_str(), y_dtype.c_str());
if (x.is_constant) {
ss << this->api_name_ << "(" << y << "[" << tpipe.tiler.TensorVectorizedOffset(current_axis, y) << "], "
<< scalar_local_blk_tensor_name << "[0], "
<< "{" << "ConvertToUint32(" << y.actual_size << ")" << "}, "
<< "{ConvertToUint32(1)}, {ConvertToUint32(1)});" << std::endl;
} else {
ss << this->api_name_ << "(" << y << "[" << tpipe.tiler.TensorVectorizedOffset(current_axis, y) << "], " << x << "["
<< tpipe.tiler.TensorVectorizedOffset(current_axis, x) << "], "
<< "{" << "ConvertToUint32(" << x.actual_size << ")" << "}, "
<< "{ConvertToUint32(1)}, {ConvertToUint32(1)});" << std::endl;
}
} else {
GELOGD("enable cast mask mode optimize, x_dtype = %s, y_dtype = %s", x_dtype.c_str(), y_dtype.c_str());
std::string dtype_size;
GE_CHK_BOOL_RET_STATUS(GetMaxDtypeSize(x.dtype, y.dtype, dtype_size) == true, ge::FAILED,
"get max data type size failed, x_dtype = %s, y_dtype = %s", x_dtype.c_str(),
y_dtype.c_str());
size_t input_strides_size = param.inputs_strides[0].size();
std::vector<ascir::SizeExpr> inner_input_strides(param.inputs_strides[0].begin(),
param.inputs_strides[0].begin() + input_strides_size - 1);
std::string input_inner_offset = input_strides_size == 1U ? "0" : CalcInnerOffset(tpipe, inner_input_strides);
size_t output_strides_size = param.outputs_strides[0].size();
std::vector<ascir::SizeExpr> inner_output_strides(param.outputs_strides[0].begin(),
param.outputs_strides[0].begin() + output_strides_size - 1);
std::string output_inner_offset = output_strides_size == 1U ? "0" : CalcInnerOffset(tpipe, inner_output_strides);
std::stringstream ss1;
ss1 << this->api_name_ << "(" << y << "[" << output_inner_offset << "], " << x << "[" << input_inner_offset << "], "
<< "{" << "ConvertToUint32(" << param.outer_repeats[outer_repeats_size - 1] << ")" << ", " << "ConvertToUint32(" << tpipe.tiler.ActualSize(param.cal_count) << ")" << "}, "
<< "{" << "ConvertToUint32(" << tpipe.tiler.Size(param.output_second_to_last_stride) << ")" << ", " << "ConvertToUint32(1)" << "}, "
<< "{" << "ConvertToUint32(" << tpipe.tiler.Size(param.input_second_to_last_stride) << ")" << ", " << "ConvertToUint32(1)" << "});"
<< std::endl;
if (outer_repeats_size == 1U) {
ss << ss1.str();
} else {
std::vector<std::string> inner_outer_repeats(param.outer_repeats.begin(),
param.outer_repeats.begin() + outer_repeats_size - 1);
CreateComputeNodeOuterFor(inner_outer_repeats, ss1, ss, 0);
}
}
result = ss.str();
return ge::SUCCESS;
}
static ApiCallRegister<CastV2ApiCall> register_cast_v2_api_call("CastV2ApiCall");
}