Searched defs:FlattenModel3 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | flatten_test.cpp | 55 struct FlattenModel3 { struct 56 const std::vector<int32_t> input_shape = {9}; 57 const std::vector<int32_t> output_shape = {9}; 58 float inputValue[9] = {1, 2, 3, 4, 5, 6, 7, 8, 9}; 59 float outputValue[9] = {0}; 61 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 9*sizeof(float)}; 62 …OHNNOperandTest output = {OH_NN_FLOAT32, OH_NN_TENSOR, output_shape, outputValue, 9*sizeof(float)}; 63 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_FLATTEN,
|