/third_party/mindspore/tests/st/ops/cpu/ |
D | test_scatter_arithmetic_op.py | 27 def __init__(self, lock, inputx, indices, updates): argument 39 def scatter_add_net(inputx, indices, updates): argument 45 def scatter_add_use_locking_false_net(inputx, indices, updates): argument 228 def __init__(self, lock, inputx, indices, updates): argument 240 def scatter_sub_net(inputx, indices, updates): argument 246 def scatter_sub_use_locking_false_net(inputx, indices, updates): argument 317 def __init__(self, lock, inputx, indices, updates): argument 329 def scatter_mul_net(inputx, indices, updates): argument 335 def scatter_mul_use_locking_false_net(inputx, indices, updates): argument 383 def __init__(self, lock, inputx, indices, updates): argument [all …]
|
D | test_scatter_nd_update_op.py | 39 def construct(self, indices, update): argument 62 def construct(self, indices, update): argument 85 def construct(self, indices, update): argument 114 def construct(self, indices, update): argument
|
D | test_gather_op.py | 31 def construct(self, params, indices): argument 57 def construct(self, params, indices): argument 83 def construct(self, params, indices): argument
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | LineLoopTest.cpp | 148 static const GLubyte indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 157 static const GLushort indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 171 static const GLuint indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 180 static const GLubyte indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 194 static const GLushort indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 213 static const GLuint indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 231 static const GLubyte indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 258 static const GLushort indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 290 static const GLuint indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 488 const void *indices, in runTest() [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | LineLoopTest.cpp | 101 static const GLubyte indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 110 static const GLushort indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 124 static const GLuint indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 133 static const GLubyte indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 150 static const GLushort indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local 172 static const GLuint indices[] = {0, 7, 6, 9, 8, 0}; in TEST_P() local
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/ |
D | scatter_arithmetic_cpu_kernel.cc | 78 auto *indices = reinterpret_cast<int *>(inputs[INDICES_INDEX_]->addr); in Launch() local 91 void ScatterArithmeticCPUKernel<T>::ScatterAdd(T *input, const int *indices, const T *updates) cons… in ScatterAdd() argument 102 void ScatterArithmeticCPUKernel<T>::ScatterSub(T *input, const int *indices, const T *updates) cons… in ScatterSub() argument 113 void ScatterArithmeticCPUKernel<T>::ScatterMul(T *input, const int *indices, const T *updates) cons… in ScatterMul() argument 124 void ScatterArithmeticCPUKernel<T>::ScatterDiv(T *input, const int *indices, const T *updates) cons… in ScatterDiv() argument 149 void ScatterArithmeticCPUKernel<T>::ScatterMax(T *input, const int *indices, const T *updates) cons… in ScatterMax() argument 162 void ScatterArithmeticCPUKernel<T>::ScatterMin(T *input, const int *indices, const T *updates) cons… in ScatterMin() argument 175 void ScatterArithmeticCPUKernel<T>::ScatterUpdate(T *input, const int *indices, const T *updates) c… in ScatterUpdate() argument
|
/third_party/mindspore/tests/st/auto_monad/ |
D | test_effect_ops.py | 86 def construct(self, indices, updates): argument 111 def construct(self, indices, updates): argument 136 def construct(self, indices, updates): argument 161 def construct(self, indices, updates): argument 186 def construct(self, indices, updates): argument 211 def construct(self, indices, updates): argument 236 def construct(self, indices, updates): argument 261 def construct(self, indices, updates): argument 286 def construct(self, indices, updates): argument 311 def construct(self, indices, updates): argument [all …]
|
/third_party/mindspore/tests/st/ops/gpu/ |
D | test_tensor_scatter_add.py | 28 def construct(self, x, indices, update): argument 32 def scatter_net(x, indices, update): argument 36 def numpy_scatter_add(x, indices, update): argument
|
D | test_scatter_func_op.py | 35 def __init__(self, func, lock, inputx, indices, updates): argument 48 def scatter_func_net(func, inputx, indices, updates): argument 54 def scatter_func_use_locking_false_net(func, inputx, indices, updates): argument 61 def __init__(self, func, inputx, indices, updates): argument 76 def scatter_func_d_net(func, inputx, indices, updates): argument 89 def construct(self, indices, updates): argument
|
D | test_sparse_gather_v2_op.py | 30 def construct(self, x, indices): argument 695 def construct(self, x, indices): argument 744 def construct(self, x, indices): argument 783 def construct(self, x, indices): argument
|
D | test_gatherV2_op.py | 31 def construct(self, x, indices): argument 855 def construct(self, x, indices): argument 909 def construct(self, x, indices): argument 953 def construct(self, x, indices): argument
|
D | test_scatter_nd_func_op.py | 35 def __init__(self, func, lock, inputx, indices, updates): argument 48 def scatter_nd_func_net(func, inputx, indices, updates): argument 54 def scatter_nd_func_use_locking_false_net(func, inputx, indices, updates): argument
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/ |
D | scatter_functor_impl.cu | 21 …al__ void ScatterUpdateKernel(const size_t inner_size, const size_t updates_size, const S *indices, in ScatterUpdateKernel() 32 …catterAddKernel(const size_t inner_size, const size_t updates_size, const S *indices, const T *upd… in ScatterAddKernel() 43 …catterSubKernel(const size_t inner_size, const size_t updates_size, const S *indices, const T *upd… in ScatterSubKernel() 55 const S *indices, const T *updates, T *input, cudaStream_t cuda_stream) { in ScatterFunc()
|
D | scatter_nd_functor_impl.cu | 22 … const S *out_strides, const S *indices, const T *updates, T *input) { in ScatterNdUpdate() 48 const S *out_strides, const S *indices, const T *updates, T *input) { in ScatterNdAdd() 74 const S *out_strides, const S *indices, const T *updates, T *input) { in ScatterNdSub() 100 … const size_t &index_depth, const S *out_strides, const S *indices, const T *updates, T *input, in CalScatterNdFunctor()
|
/third_party/flutter/skia/src/core/ |
D | SkVertState.cpp | 23 const uint16_t* indices = state->fIndices; in TrianglesX() local 53 const uint16_t* indices = state->fIndices; in TriangleStripX() local 83 const uint16_t* indices = state->fIndices; in TriangleFanX() local
|
/third_party/skia/src/core/ |
D | SkVertState.cpp | 23 const uint16_t* indices = state->fIndices; in TrianglesX() local 53 const uint16_t* indices = state->fIndices; in TriangleStripX() local 83 const uint16_t* indices = state->fIndices; in TriangleFanX() local
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fNegativeVertexArrayApiTests.cpp | 537 GLbyte indices[1] = {0}; in draw_elements() local 612 GLbyte indices[1] = {0}; in draw_elements_invalid_program() local 651 GLbyte indices[1] = {0}; in draw_elements_incomplete_primitive() local 733 GLuint indices[1] = {0}; in draw_elements_base_vertex() local 768 GLuint indices[1] = {0}; in draw_elements_base_vertex_primitive_mode_mismatch() local 902 GLbyte indices[1] = {0}; in draw_elements_instanced() local 981 GLbyte indices[1] = {0}; in draw_elements_instanced_invalid_program() local 1025 GLbyte indices[1] = {0}; in draw_elements_instanced_incomplete_primitive() local 1106 GLbyte indices[1] = {0}; in draw_elements_instanced_base_vertex() local 1152 GLuint indices[1] = {0}; in draw_elements_instanced_base_vertex_primitive_mode_mismatch() local [all …]
|
/third_party/mindspore/mindspore/ops/_grad_experimental/ |
D | grad_array_ops.py | 55 def bprop(x, indices, update, out, dout): argument 62 def tensor_scatter_possible_replacement(x, indices, updates, out, dout): argument 83 def bprop(x, indices, updates, out, dout): argument 92 def bprop(x, indices, updates, out, dout): argument
|
/third_party/python/Lib/idlelib/ |
D | parenmatch.py | 96 def finish_paren_event(self, indices): argument 120 def create_tag_opener(self, indices): argument 125 def create_tag_parens(self, indices): argument 134 def create_tag_expression(self, indices): argument
|
/third_party/boost/libs/multi_array/test/ |
D | compare.cpp | 52 array::index_gen indices; in main() local 70 array::index_gen indices; in main() local 129 array::index_gen indices; in main() local
|
/third_party/skia/third_party/externals/angle2/src/common/ |
D | utilities_unittest.cpp | 19 std::vector<unsigned int> indices; in TEST() local 32 std::vector<unsigned int> indices; in TEST() local 41 std::vector<unsigned int> indices; in TEST() local 55 std::vector<unsigned int> indices; in TEST() local 67 std::vector<unsigned int> indices; in TEST() local
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_intrinsics.py | 46 indices, flags, sysval, bit_sizes): argument 118 def intrinsic(name, src_comp=[], dest_comp=-1, indices=[], argument 690 def system_value(name, dest_comp, indices=[], bit_sizes=[32]): argument 897 def load(name, src_comp, indices=[], flags=[]): argument 954 def store(name, srcs, indices=[], flags=[]): argument
|
/third_party/flutter/skia/third_party/externals/angle2/src/common/ |
D | utilities_unittest.cpp | 19 std::vector<unsigned int> indices; in TEST() local 32 std::vector<unsigned int> indices; in TEST() local 41 std::vector<unsigned int> indices; in TEST() local 55 std::vector<unsigned int> indices; in TEST() local 67 std::vector<unsigned int> indices; in TEST() local
|
/third_party/mindspore/tests/ut/python/ir/ |
D | test_sparse_tensor.py | 42 def construct(self, indices, values): argument 58 def construct(self, indices, values): argument 90 def construct(self, indices, values): argument
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | validationGL32.cpp | 18 const void *indices, in ValidateDrawElementsBaseVertex() 28 const void *indices, in ValidateDrawElementsInstancedBaseVertex() 41 const void *indices, in ValidateDrawRangeElementsBaseVertex() 60 const void *const *indices, in ValidateMultiDrawElementsBaseVertex()
|