Searched defs:InstanceNormModel1 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | instance_norm_test.cpp | 25 struct InstanceNormModel1 { struct 26 const std::vector<int32_t> input_shape = {2, 3, 2, 2}; 27 const std::vector<int32_t> channel_shape = {3}; 28 const std::vector<int32_t> output_shape = {4}; 29 float epsilonValue[1] = {1.0e-6f}; 30 float inputValue[2][3][2][2] = {{{{1, 1}, {1, 1}}, {{1, 1}, {1, 1}}, {{1, 1}, {1, 1}}}, 32 float scaleValue[3] = {1}; 33 float biasValue[3] = {1}; 34 float outputValue[4] = {0}; 36 … OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 24*sizeof(float)}; [all …]
|