/**
 * 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.
 *
 * Generated By CANNBot
 */

/*!
 * \file ndtri_infershape.cpp
 * \brief Ndtri 算子形状/类型推导实现
 *
 * out shape == self shape;out dtype == self dtype(逐元素算子)。
 */

#include "register/op_impl_registry.h"
#include "exe_graph/runtime/infer_shape_context.h"
#include "exe_graph/runtime/infer_datatype_context.h"
#include "log/log.h"

using namespace ge;

namespace ops {

static constexpr size_t IDX_SELF = 0;
static constexpr size_t OUT_OUT = 0;

static ge::graphStatus InferShape4Ndtri(gert::InferShapeContext* context)
{
    const gert::Shape* selfShape = context->GetInputShape(IDX_SELF);
    OP_CHECK_NULL_WITH_CONTEXT(context, selfShape);
    gert::Shape* outShape = context->GetOutputShape(OUT_OUT);
    OP_CHECK_NULL_WITH_CONTEXT(context, outShape);
    *outShape = *selfShape;
    return ge::GRAPH_SUCCESS;
}

static ge::graphStatus InferDataType4Ndtri(gert::InferDataTypeContext* context)
{
    const ge::DataType selfDtype = context->GetInputDataType(IDX_SELF);
    context->SetOutputDataType(OUT_OUT, selfDtype);
    return ge::GRAPH_SUCCESS;
}

IMPL_OP_INFERSHAPE(Ndtri).InferShape(InferShape4Ndtri).InferDataType(InferDataType4Ndtri);

} // namespace ops