Searched defs:ReduceSumModel1 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | reducesum_test.cpp | 25 struct ReduceSumModel1 { struct 26 const std::vector<int32_t> input_shape = {2, 3}; 27 const std::vector<int32_t> output_shape = {1, 3}; 29 bool keepDimsValue[1] = {true}; 30 bool reduceToEndValue[1] = {false}; 31 float inputValue[2][3] = {{1, 2, 3}, {4, 5, 6}}; 32 float axisValue[1] = {0}; 33 float outputValue[1][3] = {0}; 35 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)}; 36 OHNNOperandTest axis = {OH_NN_FLOAT32, OH_NN_TENSOR, {1}, axisValue, sizeof(float)}; [all …]
|