Searched defs:MinimumModel1 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | minimum_test.cpp | 25 struct MinimumModel1 { struct 26 const std::vector<int32_t> tensor_shape = {3}; 27 float input0Value[3] = {1, 3, 5}; 28 float input1Value[3] = {2, 2, 4}; 29 float outputValue[3] = {0}; 31 …OHNNOperandTest input0 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input0Value, 3*sizeof(float)}; 32 …OHNNOperandTest input1 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input1Value, 3*sizeof(float)}; 33 …OHNNOperandTest output = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, outputValue, 3*sizeof(float)}; 34 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_MINIMUM,
|