#include "op_plugin/AclOpsInterface.h"
#include "op_plugin/OpApiInterface.h"
#include "op_plugin/utils/op_api_common.h"
namespace op_api {
using npu_preparation = at_npu::native::OpPreparation;
at::Tensor _pdist_forward(const at::Tensor& self, double p)
{
DO_COMPATIBILITY(aclnnPdist, acl_op::_pdist_forward(self, p));
TORCH_CHECK(p >= 0, "pdist only supports non-negative p values", OPS_ERROR(ErrCode::VALUE));
float p_float;
if (std::isinf(p)) {
p_float = std::numeric_limits<float>::infinity();
} else {
TORCH_CHECK(p <= std::numeric_limits<float>::max(), "p dose not support float64 currently.",
OPS_ERROR(ErrCode::TYPE));
p_float = static_cast<float>(p);
}
auto output_size = op_infer::pdist_npu_output_size(self);
at::Tensor result = npu_preparation::apply_tensor_without_format(self, output_size);
EXEC_NPU_CMD(aclnnPdist, self, p_float, result);
return result;
}
at::Tensor pdist(const at::Tensor& self, double p)
{
return at::_pdist_forward(self, p);
}
}