Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dreducel2_test.cpp73 struct ReduceL2Model3 { struct
74 const std::vector<int32_t> input_shape = {2, 2, 2};
75 const std::vector<int32_t> output_shape = {2, 2};
77 bool keepDimsValue[1] = {false};
78 bool reduceToEndValue[1] = {false};
79 float coeffValue[1] = {1};
80 float inputValue[2][2][2] = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}};
81 float axisValue[2] = {0, 1};
82 float outputValue[2][2] = {0};
84 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 8*sizeof(float)};
[all …]