* Copyright (c) 2026 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.
*/
* \file erf_tiling_arch35.cpp
* \brief
*/
#include "erf_tiling_arch35.h"
#include <graph/utils/type_utils.h>
#include "register/op_impl_registry.h"
#include "tiling/platform/platform_ascendc.h"
#include "log/log.h"
#include "util/math_util.h"
#include "platform/platform_info.h"
#include "op_host/tiling_base_util.h"
#include "register/tilingdata_base.h"
#include "math/erf/op_kernel/arch35/erf_dag.h"
#include "math/erf/op_kernel/arch35/erf_struct.h"
#include <iostream>
using namespace ErfOp;
namespace optiling {
const size_t ASCEND_WORKSPACE = 16777216;
const int64_t ASCEND_API_BUFFER = 122880;
ge::graphStatus ErfTiling::CalcInputDtype()
{
OP_LOGD(tilingContext->GetNodeName(), "ErfTiling CalcInputDtype enter.");
auto inputDesc = tilingContext->GetInputDesc(0);
OP_CHECK_NULL_WITH_CONTEXT(tilingContext, inputDesc);
this->inputDtype = inputDesc->GetDataType();
OP_CHECK_IF(
this->inputDtype != ge::DT_FLOAT16 && this->inputDtype != ge::DT_BF16 && this->inputDtype != ge::DT_FLOAT,
OP_LOGE_FOR_INVALID_DTYPE_WITH_REASON(
tilingContext->GetNodeName(), "x",
ge::TypeUtils::DataTypeToSerialString(this->inputDtype),
"dtype not in [DT_FLOAT16, DT_BF16, DT_FLOAT]"),
return ge::GRAPH_FAILED);
return ge::GRAPH_SUCCESS;
}
ge::graphStatus ErfTiling::CalcOutputDtype()
{
OP_LOGD(tilingContext->GetNodeName(), "ErfTiling CalcOutputDtype enter.");
auto outputDesc = tilingContext->GetOutputDesc(0);
OP_CHECK_NULL_WITH_CONTEXT(tilingContext, outputDesc);
this->outputDtype = outputDesc->GetDataType();
OP_CHECK_IF(
this->outputDtype != this->inputDtype,
OP_LOGE_FOR_INVALID_DTYPES_WITH_REASON(tilingContext->GetNodeName(), "outputDtype, inputDtype", std::string(ge::TypeUtils::DataTypeToSerialString(this->outputDtype)) + ", " + std::string(ge::TypeUtils::DataTypeToSerialString(this->inputDtype)), "output dtype must be same as input dtype"), return ge::GRAPH_FAILED);
return ge::GRAPH_SUCCESS;
}
ge::graphStatus ErfTiling::CheckShape()
{
OP_LOGD(tilingContext->GetNodeName(), "ErfTiling CheckShape enter.");
auto inputStorageShape = tilingContext->GetInputShape(0);
OP_CHECK_NULL_WITH_CONTEXT(tilingContext, inputStorageShape);
const gert::Shape& inputXShape = Ops::Base::EnsureNotScalar(inputStorageShape->GetStorageShape());
auto outputStorageShape = tilingContext->GetOutputShape(0);
OP_CHECK_NULL_WITH_CONTEXT(tilingContext, outputStorageShape);
const gert::Shape& outputYShape = Ops::Base::EnsureNotScalar(outputStorageShape->GetStorageShape());
OP_CHECK_IF(
inputXShape != outputYShape, OP_LOGE_FOR_INVALID_SHAPES_WITH_REASON(tilingContext->GetNodeName(), "x, y", (Ops::Base::ToString(inputXShape) + ", " + Ops::Base::ToString(outputYShape)).c_str(), "input shape must equal output shape"),
return ge::GRAPH_FAILED);
return ge::GRAPH_SUCCESS;
}
ge::graphStatus ErfTiling::RunTiling()
{
OP_LOGD(tilingContext->GetNodeName(), "ErfTiling RunTiling enter.");
ElewiseBaseTiling elewiseBaseTiling(tilingContext);
OP_CHECK_IF(
CalcInputDtype() == ge::GRAPH_FAILED, OP_LOGE(tilingContext->GetNodeName(), "get input dtype failed"),
return ge::GRAPH_FAILED);
OP_CHECK_IF(
CalcOutputDtype() == ge::GRAPH_FAILED, OP_LOGE(tilingContext->GetNodeName(), "get output dtype failed"),
return ge::GRAPH_FAILED);
OP_CHECK_IF(
CheckShape() == ge::GRAPH_FAILED, OP_LOGE(tilingContext->GetNodeName(), "check shape failed"), return ge::GRAPH_FAILED);
auto tiling = tilingContext->GetTilingData<EleBaseTilingDataV2>();
OP_CHECK_IF(
(tiling == nullptr), OP_LOGE_FOR_INVALID_VALUE_WITH_REASON(tilingContext->GetNodeName(), "tiling_data", "nullptr", "Get tiling data from GE context failed"),
return ge::GRAPH_FAILED);
ge::graphStatus baseTilingResult = ge::GRAPH_FAILED;
if (this->outputDtype == ge::DT_FLOAT16) {
dType = TPL_FP16;
baseTilingResult = elewiseBaseTiling.DoTiling<ErfOp::ErfDAG<half, half>::OpDag>(*tiling, ASCEND_API_BUFFER);
} else if (this->outputDtype == ge::DT_BF16) {
dType = TPL_BF16;
baseTilingResult = elewiseBaseTiling.DoTiling<ErfOp::ErfDAG<bfloat16_t>::OpDag>(*tiling, ASCEND_API_BUFFER);
} else if (this->outputDtype == ge::DT_FLOAT) {
dType = TPL_FP32;
baseTilingResult = elewiseBaseTiling.DoTiling<ErfOp::ErfDAG<float>::OpDag>(*tiling, ASCEND_API_BUFFER);
} else {
OP_LOGE_FOR_INVALID_DTYPE_WITH_REASON(
tilingContext->GetNodeName(), "y",
ge::TypeUtils::DataTypeToSerialString(this->outputDtype),
"dtype not in [DT_FLOAT16, DT_BF16, DT_FLOAT]");
return ge::GRAPH_FAILED;
}
OP_CHECK_IF(
baseTilingResult == ge::GRAPH_FAILED, OP_LOGE(tilingContext->GetNodeName(), "elewiseBaseTiling failed"),
return ge::GRAPH_FAILED);
size_t* currentWorkspace = tilingContext->GetWorkspaceSizes(1);
currentWorkspace[0] = ASCEND_WORKSPACE;
const uint64_t tilingKey = GET_TPL_TILING_KEY(static_cast<uint64_t>(tiling->scheMode), dType);
OP_LOGD(tilingContext->GetNodeName(), "[TilingData] : tilingKey=%lu", tilingKey);
tilingContext->SetTilingKey(tilingKey);
tilingContext->SetBlockDim(tiling->blockNum);
return ge::GRAPH_SUCCESS;
}
static ge::graphStatus Tiling4Erf(gert::TilingContext* tilingContextGen)
{
OP_LOGD(tilingContextGen->GetNodeName(), "Tiling4Erf rt2.0 is running.");
auto compileInfo = reinterpret_cast<const ElewiseCompileInfo*>(tilingContextGen->GetCompileInfo());
OP_CHECK_NULL_WITH_CONTEXT(tilingContextGen, compileInfo);
ErfTiling baseOpTiling(tilingContextGen);
return baseOpTiling.RunTiling();
}
static ge::graphStatus TilingPrepareForErf([[maybe_unused]] gert::TilingParseContext* context)
{
return ge::GRAPH_SUCCESS;
}
IMPL_OP_OPTILING(Erf).Tiling(Tiling4Erf).TilingParse<ElewiseCompileInfo>(TilingPrepareForErf);
}