Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dlogical_or_test.cpp41 struct LogicalOrModel2 { struct
42 const std::vector<int32_t> tensor_shape = {3};
43 int64_t input0Value[3] = {0, 1, 0};
44 int64_t input1Value[3] = {1, 0, 1};
45 bool outputValue[3] = {false};
47 …OHNNOperandTest input0 = {OH_NN_INT64, OH_NN_TENSOR, tensor_shape, input0Value, 3*sizeof(int64_t)};
48 …OHNNOperandTest input1 = {OH_NN_INT64, OH_NN_TENSOR, tensor_shape, input1Value, 3*sizeof(int64_t)};
49 OHNNOperandTest output = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, outputValue, 3*sizeof(bool)};
50 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_LOGICAL_OR,