Searched defs:ScatterNdModel3 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | scatter_nd_test.cpp | 67 struct ScatterNdModel3 { struct 68 const std::vector<int32_t> indices_shape = {2, 2}; 69 const std::vector<int32_t> updates_shape = {2, 2}; 70 const std::vector<int32_t> shape_shape = {2}; 71 const std::vector<int32_t> output_shape = {2, 2}; 72 float indicesValue[2][2] = {{0, 1}, {1, 0}}; 73 float updatesValue[2][2] = {{6, 7}, {8, 9}}; 74 float shapeValue[2] = {2, 2}; 75 float outputValue[2][2] = {0}; 77 …NOperandTest indices = {OH_NN_FLOAT32, OH_NN_TENSOR, indices_shape, indicesValue, 4*sizeof(float)}; [all …]
|