Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dless_test.cpp25 struct LessModel1 { struct
26 const std::vector<int32_t> tensor_shape = {3};
27 float input0Value[3] = {1, 2, 3};
28 float input1Value[3] = {3, 2, 1};
29 bool outputValue[3] = {0};
31 …OHNNOperandTest input0 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input0Value, 3*sizeof(float)};
32 …OHNNOperandTest input1 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input1Value, 3*sizeof(float)};
33 OHNNOperandTest output = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, outputValue, 3*sizeof(bool)};
34 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_LESS,