Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dselect_test.cpp80 struct SelectModel4 { struct
81 const std::vector<int32_t> input0_shape = {2};
82 const std::vector<int32_t> input1_shape = {3};
83 const std::vector<int32_t> input2_shape = {4};
84 bool input0Value[2] = {true, false};
85 float input1Value[3] = {1, 2, 3};
86 float input2Value[4] = {4, 5, 6, 7};
87 float outputValue[3] = {0};
89 OHNNOperandTest input0 = {OH_NN_BOOL, OH_NN_TENSOR, input0_shape, input0Value, 2*sizeof(bool)};
90 …OHNNOperandTest input1 = {OH_NN_FLOAT32, OH_NN_TENSOR, input1_shape, input1Value, 3*sizeof(float)};
[all …]