Searched defs:LogicalNotModel1 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | logical_not_test.cpp | 25 struct LogicalNotModel1 { struct 26 const std::vector<int32_t> tensor_shape = {3}; 27 int64_t inputValue[3] = {1, 0, 1}; 28 bool outputValue[3] = {false}; 30 … OHNNOperandTest input = {OH_NN_INT64, OH_NN_TENSOR, tensor_shape, inputValue, 3*sizeof(int64_t)}; 31 OHNNOperandTest output = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, outputValue, 3*sizeof(bool)}; 32 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_LOGICAL_NOT,
|