Searched defs:ReduceSumModel5 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | reducesum_test.cpp | 113 struct ReduceSumModel5 { struct 114 const std::vector<int32_t> input_shape = {2, 3}; 115 const std::vector<int32_t> output_shape = {1}; 117 bool keepDimsValue[1] = {true}; 118 bool reduceToEndValue[1] = {false}; 119 float inputValue[2][3] = {{1, 2, 3}, {4, 5, 6}}; 120 float axisValue[1] = {1}; 121 float outputValue[1] = {0}; 123 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)}; 124 OHNNOperandTest axis = {OH_NN_FLOAT32, OH_NN_TENSOR, {1}, axisValue, sizeof(float)}; [all …]
|