-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
273 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#include "pytorch_npu_helper.hpp" | ||
#include "torch_npu/csrc/aten/NPUNativeFunctions.h" | ||
#include "torch_npu/csrc/framework/utils/OpAdapter.h" | ||
|
||
using namespace NPU_NAME_SPACE; | ||
using namespace std; | ||
|
||
void knn_forward_npu(int b, int n, int m, int nsample, const Tensor xyz, | ||
const Tensor new_xyz, Tensor idx, Tensor dist2) { | ||
// transpose known from [B, N, 3] to [B, 3, N] | ||
at::Tensor source = xyz.transpose(2, 1).contiguous(); | ||
at::Tensor target = new_xyz.contiguous(); | ||
|
||
bool is_from_knn = true; | ||
EXEC_NPU_CMD(aclnnKnn, source, target, is_from_knn, dist2); | ||
} | ||
|
||
void knn_forward_impl(int b, int n, int m, int nsample, const Tensor xyz, | ||
const Tensor new_xyz, Tensor idx, Tensor dist2); | ||
|
||
REGISTER_NPU_IMPL(knn_forward_impl, knn_forward_npu); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.