Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dscatter_nd_test.cpp25 struct ScatterNdModel1 { struct
26 const std::vector<int32_t> indices_shape = {2, 1};
27 const std::vector<int32_t> updates_shape = {2};
28 const std::vector<int32_t> shape_shape = {1};
29 const std::vector<int32_t> output_shape = {3};
30 float indicesValue[2][1] = {{0}, {2}};
31 float updatesValue[2] = {1, 3};
32 float shapeValue[1] = {3};
33 float outputValue[3] = {0};
35 …NOperandTest indices = {OH_NN_FLOAT32, OH_NN_TENSOR, indices_shape, indicesValue, 4*sizeof(float)};
[all …]