Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dselect_test.cpp100 struct SelectModel5 { struct
101 const std::vector<int32_t> tensor_shape = {1};
102 bool* input0Value = {};
103 float* input1Value = {};
104 float* outputValue = {};
106 OHNNOperandTest input0 = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, input0Value, sizeof(bool)};
107 … OHNNOperandTest input1 = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, input1Value, sizeof(float)};
108 … OHNNOperandTest output = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, outputValue, sizeof(float)};
109 OHNNGraphArgs graphArgs = {.operationType = OH_NN_OPS_SELECT,