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