Searched defs:MinimumModel3 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | minimum_test.cpp | 57 struct MinimumModel3 { struct 58 const std::vector<int32_t> tensor_shape = {}; 59 float input0Value[3] = {1, 3, 5}; 60 bool input1Value[1] = {false}; 61 float* outputValue = {}; 63 …OHNNOperandTest input0 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input0Value, 3*sizeof(float)}; 64 OHNNOperandTest input1 = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, input1Value, sizeof(bool)}; 65 …OHNNOperandTest output = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, outputValue, 0*sizeof(float)}; 66 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_MINIMUM,
|