Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dlogical_not_test.cpp67 struct LogicalNotModel4 { struct
68 const std::vector<int32_t> tensor_shape = {2};
69 bool inputValue[2] = {true, false};
70 bool outputValue[2] = {false, true};
72 OHNNOperandTest input = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, inputValue, 2*sizeof(bool)};
73 OHNNOperandTest output = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, outputValue, 2*sizeof(bool)};
74 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_LOGICAL_NOT,