#include "op_plugin/AclOpsInterface.h"
#include "op_plugin/OpApiInterface.h"
#include "op_plugin/utils/op_api_common.h"
namespace op_api {
at::Tensor& nll_loss2d_backward_out(const at::Tensor& grad_output, const at::Tensor& self,
const at::Tensor& target,
const c10::optional<at::Tensor>& weight,
int64_t reduction, int64_t ignore_index,
const at::Tensor& total_weight, at::Tensor& grad_input)
{
DO_COMPATIBILITY(aclnnNLLLoss2dBackward, acl_op::nll_loss2d_backward_out(grad_output, self, target, weight,
reduction, ignore_index, total_weight,
grad_input));
at::Tensor weight_tensor = c10::value_or_else(weight, [] { return at::Tensor(); });
TORCH_CHECK(self.dim() > 1, "self dim has to be more than 1", OPS_ERROR(ErrCode::PARAM));
if (!weight_tensor.defined()) {
weight_tensor = at::ones(self.size(1), self.options());
}
at_npu::native::OpPreparation::check_memory({self, grad_output, target, weight_tensor, total_weight}, {grad_input});
EXEC_NPU_CMD(aclnnNLLLoss2dBackward, grad_output, self, target, weight_tensor, reduction, ignore_index,
total_weight, grad_input);
return grad_input;
}
at::Tensor nll_loss2d_backward(const at::Tensor& grad_output, const at::Tensor& self,
const at::Tensor& target,
const c10::optional<at::Tensor>& weight, int64_t reduction,
int64_t ignore_index, const at::Tensor& total_weight)
{
DO_COMPATIBILITY(aclnnNLLLoss2dBackward, acl_op::nll_loss2d_backward(grad_output, self, target, weight,
reduction, ignore_index, total_weight));
at::Tensor grad_input = at_npu::native::OpPreparation::apply_tensor_without_format(self);
nll_loss2d_backward_out(grad_output, self, target, weight, reduction, ignore_index,
total_weight, grad_input);
return grad_input;
}
}