Home
last modified time | relevance | path

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

/test/xts/acts/ai/nncore/opstest/src/
Dall_test.cpp63 struct AllModel3 { struct
64 const std::vector<int32_t> input_shape = {2, 2, 2};
65 const std::vector<int32_t> output_shape = {1};
66 std::vector<int64_t> keepDimsValue = {1};
67 bool inputValue[2][2][2] = {{{true, true}, {true, true}}, {{true, true}, {true, true}}};
68 int64_t* axisValue = {};
69 bool outputValue[1] = {false};
71 OHNNOperandTest input = {OH_NN_BOOL, OH_NN_TENSOR, input_shape, inputValue, 8*sizeof(float)};
72 OHNNOperandTest axis = {OH_NN_INT64, OH_NN_TENSOR, {}, axisValue, 0*sizeof(int64_t)};
73 OHNNOperandTest output = {OH_NN_BOOL, OH_NN_TENSOR, output_shape, outputValue, sizeof(float)};
[all …]