Searched defs:ModModel1 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | mod_test.cpp | 25 struct ModModel1 { struct 26 const std::vector<int32_t> tensor_shape = {3}; 27 int64_t input0Value[3] = {10, 20, 30}; 28 int64_t input1Value[1] = {3}; 29 int64_t outputValue[3] = {0}; 31 …OHNNOperandTest input0 = {OH_NN_INT64, OH_NN_TENSOR, tensor_shape, input0Value, 3*sizeof(int64_t)}; 32 …OHNNOperandTest input1 = {OH_NN_INT64, OH_NN_TENSOR, tensor_shape, input1Value, 3*sizeof(int64_t)}; 33 …OHNNOperandTest output = {OH_NN_INT64, OH_NN_TENSOR, tensor_shape, outputValue, 3*sizeof(int64_t)}; 34 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_MOD,
|