Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dscatter_nd_test.cpp88 struct ScatterNdModel4 { struct
89 const std::vector<int32_t> indices_shape = {2, 3};
90 const std::vector<int32_t> updates_shape = {2};
91 const std::vector<int32_t> shape_shape = {3};
92 const std::vector<int32_t> output_shape = {2, 2, 2};
93 float indicesValue[2][3] = {{0, 0, 1}, {1, 1, 0}};
94 float updatesValue[2] = {10, 11};
95 float shapeValue[3] = {2, 2, 2};
96 float outputValue[2][2][2] = {0};
98 …NOperandTest indices = {OH_NN_FLOAT32, OH_NN_TENSOR, indices_shape, indicesValue, 6*sizeof(float)};
[all …]