#include "op_plugin/AclOpsInterface.h"
#include "op_plugin/OpApiInterface.h"
#include "op_plugin/utils/op_api_common.h"
#include "op_plugin/utils/OpUtils.h"
namespace op_api {
using npu_preparation = at_npu::native::OpPreparation;
at::Tensor &baddbmm_out(const at::Tensor &self, const at::Tensor &batch1, const at::Tensor &batch2,
const at::Scalar &beta, const at::Scalar &alpha, at::Tensor &out)
{
DO_COMPATIBILITY(aclnnBaddbmm, acl_op::baddbmm_out(self, batch1, batch2, beta, alpha, out));
auto output_size = op_infer::baddbmm_npu_output_size(batch1, batch2);
npu_preparation::check_tensor({self, batch1, batch2}, out, self.scalar_type(), output_size);
int8_t cube_math_type = op_plugin::utils::get_cube_math_type_with_passthrough();
EXEC_NPU_CMD(aclnnBaddbmm, self, batch1, batch2, beta, alpha, out, cube_math_type);
return out;
}
at::Tensor baddbmm(const at::Tensor &self, const at::Tensor &batch1, const at::Tensor &batch2, const at::Scalar &beta,
const at::Scalar &alpha)
{
DO_COMPATIBILITY(aclnnBaddbmm, acl_op::baddbmm(self, batch1, batch2, beta, alpha));
auto output_size = op_infer::baddbmm_npu_output_size(batch1, batch2);
at::Tensor result = npu_preparation::apply_tensor_without_format(output_size, self.options());
int8_t cube_math_type = op_plugin::utils::get_cube_math_type_with_passthrough();
EXEC_NPU_CMD(aclnnBaddbmm, self, batch1, batch2, beta, alpha, result, cube_math_type);
FLOP_COUNT(FlopCounter::baddbmm_flop, batch1, batch2);
return result;
}
at::Tensor &baddbmm_(at::Tensor &self, const at::Tensor &batch1, const at::Tensor &batch2, const at::Scalar &beta,
const at::Scalar &alpha)
{
DO_COMPATIBILITY(aclnnBaddbmm, acl_op::baddbmm_(self, batch1, batch2, beta, alpha));
op_api::baddbmm_out(self, batch1, batch2, beta, alpha, self);
return self;
}
}