Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dreducel2_test.cpp49 struct ReduceL2Model2 { struct
50 const std::vector<int32_t> input_shape = {2, 2};
51 const std::vector<int32_t> output_shape = {1, 2};
53 bool keepDimsValue[1] = {true};
54 bool reduceToEndValue[1] = {false};
55 float coeffValue[1] = {1};
56 float inputValue[2][2] = {{1, 2}, {3, 4}};
57 float axisValue[1] = {1};
58 float outputValue[1][2] = {0};
60 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 4*sizeof(float)};
[all …]