Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dlogical_and_test.cpp57 struct LogicalAndModel3 { struct
58 const std::vector<int32_t> tensor_shape = {2};
59 bool input0Value[2] = {true, false};
60 bool input1Value[1] = {true};
61 bool outputValue[2] = {false};
63 OHNNOperandTest input0 = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, input0Value, 2*sizeof(bool)};
64 OHNNOperandTest input1 = {OH_NN_BOOL, OH_NN_TENSOR, {1}, input1Value, sizeof(bool)};
65 OHNNOperandTest output = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, outputValue, 2*sizeof(bool)};
66 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_LOGICAL_AND,