Searched defs:RoundModel2 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | round_test.cpp | 40 struct RoundModel2 { struct 41 const std::vector<int32_t> tensor_shape = {4}; 42 float inputValue[4] = {-1.7, -3.3, 0, 5.5}; 43 float outputValue[4] = {0}; 45 … OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 4*sizeof(float)}; 46 …OHNNOperandTest output = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, outputValue, 4*sizeof(float)}; 47 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_ROUND,
|