Home
last modified time | relevance | path

Searched defs:GatherNd (Results 1 – 4 of 4) sorted by relevance

/third_party/mindspore/mindspore/core/ops/
Dgather_nd.h32 GatherNd() : PrimitiveC(kNameGatherNd) { InitIOName({"input_x", "indices"}, {"y"}); } in GatherNd() function
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp32/
DgatherNd_fp32.c21 int GatherNd(const float *input, float *output, const int *in_offset, int area, int count) { in GatherNd() function
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Dgathernd.cu49 void GatherNd(T *input, S *indices, T *output, const size_t &output_dim0, const size_t &output_dim1, in GatherNd() function
/third_party/mindspore/mindspore/ops/operations/
Darray_ops.py3718 class GatherNd(PrimitiveWithInfer): class