Home
last modified time | relevance | path

Searched refs:GatherV2 (Results 1 – 15 of 15) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Dgatherv2.cu42 void GatherV2(T *input, S *indices, T *output, size_t output_dim0, size_t output_dim1, size_t outpu… in GatherV2() function
50 template void GatherV2<float, int>(float *input, int *indices, float *output, size_t output_dim0, s…
52 template void GatherV2<float, int64_t>(float *input, int64_t *indices, float *output, size_t output…
54 template void GatherV2<half, int>(half *input, int *indices, half *output, size_t output_dim0, size…
56 template void GatherV2<half, int64_t>(half *input, int64_t *indices, half *output, size_t output_di…
58 template void GatherV2<double, int>(double *input, int *indices, double *output, size_t output_dim0…
60 template void GatherV2<double, int64_t>(double *input, int64_t *indices, double *output, size_t out…
62 template void GatherV2<int, int>(int *input, int *indices, int *output, size_t output_dim0, size_t …
64 template void GatherV2<int, int64_t>(int *input, int64_t *indices, int *output, size_t output_dim0,…
66 template void GatherV2<int16_t, int>(int16_t *input, int *indices, int16_t *output, size_t output_d…
[all …]
Dgatherv2.cuh21 void GatherV2(T *input, S *indices, T *output, size_t output_dim0, size_t output_dim1, size_t outpu…
/third_party/mindspore/tests/ut/python/parallel/
Dtest_gather_v2_primitive.py66 class GatherV2(LossBase): class
68 super(GatherV2, self).__init__()
158 …criterion = GatherV2(1, strategy=gather_v2_strategy, index_size=batch_size_per_device * device_num…
165 …criterion = GatherV2(2, strategy=gather_v2_strategy, index_size=batch_size_per_device * device_num…
172 …criterion = GatherV2(1, strategy=gather_v2_strategy, index_size=batch_size_per_device * device_num…
180 …criterion = GatherV2(1, strategy=gather_v2_strategy, index_size=batch_size_per_device * device_num…
187 …criterion = GatherV2(1, strategy=gather_v2_strategy, index_size=batch_size_per_device * device_num…
194 …criterion = GatherV2(1, strategy=gather_v2_strategy, index_size=batch_size_per_device * device_num…
/third_party/mindspore/mindspore/ccsrc/transform/graph_ir/op_declare/
Dselection_ops_declare.h104 DECLARE_OP_ADAPTER(GatherV2)
105 DECLARE_OP_USE_OUTPUT(GatherV2)
Dselection_ops_declare.cc30 INPUT_MAP(GatherV2) = {{1, INPUT_DESC(x)}, {2, INPUT_DESC(indices)}, {3, INPUT_DESC(axis)}};
31 ATTR_MAP(GatherV2) = EMPTY_ATTR_MAP;
32 OUTPUT_MAP(GatherV2) = {{0, OUTPUT_DESC(y)}};
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/arrays/
Dgatherv2_gpu_kernel.h62 GatherV2(input_addr, indices_addr, output_addr, dims_[0], dims_[1], dims_[2], input_dim1, in Launch()
/third_party/mindspore/tests/ut/python/pipeline/infer/
Dtest_auto_monad.py112 self.gather = P.GatherV2()
326 self.gather = P.GatherV2()
/third_party/mindspore/mindspore/ops/operations/
D__init__.py25 … Fill, Ones, Zeros, GatherNd, GatherV2, Gather, SparseGatherV2, InvertPermutation,
Darray_ops.py841 class GatherV2(PrimitiveWithCheck): class
/third_party/mindspore/tests/st/networks/models/resnet50/src_thor/
Dthor.py215 self.gather = P.GatherV2()
/third_party/mindspore/mindspore/nn/optim/
Dthor.py426 self.gather = P.GatherV2()
742 self.gather = P.GatherV2()
/third_party/mindspore/mindspore/parallel/nn/
Dtransformer.py528 self.gather = P.GatherV2().shard(((1, 1), (parallel_config.data_parallel, 1)))
534 self.gather = P.GatherV2().shard(((parallel_config.model_parallel, 1), (1, 1)))
/third_party/mindspore/mindspore/nn/layer/
Dthor_layer.py591 self.gather = P.GatherV2()
/third_party/mindspore/mindspore/ops/_grad/
Dgrad_array_ops.py406 @bprop_getters.register(P.GatherV2)
/third_party/mindspore/
DRELEASE.md1489 ##### `ops.GatherV2`, change API name to `ops.Gather` ([!11713](https://gitee.com/mindspore/mindspo…
1491 GatherV2 is changed to Gather. The old interface can be used continuously, but will be deleted in s…
1503 >>> gather = ops.GatherV2()