Home
last modified time | relevance | path

Searched defs:SwishModel3 (Results 1 – 1 of 1) sorted by relevance

/test/xts/acts/ai/nncore/opstest/src/
Dswish_test.cpp53 struct SwishModel3 { struct
54 const std::vector<int32_t> tensor_shape = {2, 3};
55 float inputValue[2][2] = {{0, 0}, {0, 0}};
56 float outputValue[2][2] = {0};
58 … OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 4*sizeof(float)};
59 …OHNNOperandTest output = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, outputValue, 4*sizeof(float)};
60 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_SWISH,