Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dall_test.cpp25 struct AllModel1 { struct
26 const std::vector<int32_t> input_shape = {2, 2};
27 const std::vector<int32_t> output_shape = {1};
28 std::vector<int64_t> keepDimsValue = {0};
29 bool inputValue[2][2] = {{true, true}, {true, false}};
30 int64_t* axisValue = {};
31 bool outputValue[1] = {false};
33 OHNNOperandTest input = {OH_NN_BOOL, OH_NN_TENSOR, input_shape, inputValue, 4*sizeof(bool)};
34 OHNNOperandTest axis = {OH_NN_INT64, OH_NN_TENSOR, {}, axisValue, 0*sizeof(int64_t)};
35 OHNNOperandTest output = {OH_NN_BOOL, OH_NN_TENSOR, output_shape, outputValue, sizeof(bool)};
[all …]