Searched defs:RankModel2 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | rank_test.cpp | 39 struct RankModel2 { struct 40 const std::vector<int32_t> tensor_shape = {1, 2, 3, 4, 5}; 41 float inputValue[1][2][3][4][5] = {1}; 42 float outputValue[1] = {0}; 44 …OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 120*sizeof(float)}; 45 OHNNOperandTest output = {OH_NN_FLOAT32, OH_NN_TENSOR, {1}, outputValue, sizeof(float)}; 46 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_RANK,
|