Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dreducel2_test.cpp97 struct ReduceL2Model4 { struct
98 const std::vector<int32_t> input_shape = {2, 2, 2};
99 const std::vector<int32_t> output_shape = {2, 2};
101 bool keepDimsValue[1] = {true};
102 bool reduceToEndValue[1] = {true};
103 float coeffValue[1] = {1};
104 float inputValue[2][2][2] = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}};
105 float axisValue[1] = {0};
106 float outputValue[1][2] = {0};
108 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 8*sizeof(float)};
[all …]