Searched defs:PowModel1 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | pow_test.cpp | 25 struct PowModel1 { struct 26 const std::vector<int32_t> tensor_shape = {2}; 27 float scaleValue = 2; 28 float shiftValue = 1; 29 float input0Value[2] = {1, 2}; 30 float input1Value[2] = {2, 3}; 31 float outputValue[2] = {0}; 33 …OHNNOperandTest input0 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input0Value, 2*sizeof(float)}; 34 …OHNNOperandTest input1 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input1Value, 2*sizeof(float)}; 35 …OHNNOperandTest output = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, outputValue, 2*sizeof(float)}; [all …]
|