Searched defs:LogicalAndModel4 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | logical_and_test.cpp | 73 struct LogicalAndModel4 { struct 74 const std::vector<int32_t> tensor_shape = {2}; 75 bool input0Value[1] = {false}; 76 bool input1Value[2] = {true, false}; 77 bool outputValue[2] = {false}; 79 OHNNOperandTest input0 = {OH_NN_BOOL, OH_NN_TENSOR, {1}, input0Value, sizeof(bool)}; 80 OHNNOperandTest input1 = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, input1Value, 2*sizeof(bool)}; 81 OHNNOperandTest output = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, outputValue, 2*sizeof(bool)}; 82 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_LOGICAL_AND,
|