Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dlogical_not_test.cpp81 struct LogicalNotModel5 { struct
82 const std::vector<int32_t> tensor_shape = {3};
83 bool inputValue[3] = {0, 0, 1};
84 bool outputValue[3] = {false};
86 OHNNOperandTest input = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, inputValue, 3*sizeof(bool)};
87 OHNNOperandTest output = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, outputValue, 3*sizeof(bool)};
88 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_LOGICAL_NOT,