Searched defs:LogicalAndModel5 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | logical_and_test.cpp | 89 struct LogicalAndModel5 { struct 90 const std::vector<int32_t> tensor_shape = {3}; 91 bool input0Value[3] = {true, false, true}; 92 bool input1Value[3] = {false, false, true}; 93 bool outputValue[3] = {false}; 95 OHNNOperandTest input0 = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, input0Value, 3*sizeof(bool)}; 96 OHNNOperandTest input1 = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, input1Value, 3*sizeof(bool)}; 97 OHNNOperandTest output = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, outputValue, 3*sizeof(bool)}; 98 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_LOGICAL_AND,
|