Searched defs:LogSoftmaxModel1 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | log_softmax_test.cpp | 25 struct LogSoftmaxModel1 { struct 26 const std::vector<int32_t> tensor_shape = {4, 2}; 27 int64_t axisValue[1] = {1}; 28 float inputValue[4][2] = {{1, 2}, {3, 4}, {5, 6}, {7, 8}}; 29 float outputValue[4][2] = {0}; 31 … OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 8*sizeof(float)}; 32 …OHNNOperandTest output = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, outputValue, 8*sizeof(float)}; 33 OHNNOperandTest axis = {OH_NN_INT64, OH_NN_LOG_SOFTMAX_AXIS, {1}, axisValue, sizeof(int64_t)}; 34 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_LOG_SOFTMAX,
|