Searched defs:CropModel3 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | crop_test.cpp | 71 struct CropModel3 { struct 72 const std::vector<int32_t> input_shape = {3, 2, 2}; 73 const std::vector<int32_t> shape_shape = {3}; 74 const std::vector<int32_t> output_shape = {4, 2, 2}; 76 int64_t axisValue[1] = {1}; 77 std::vector<int64_t> offsetsValue = {0, 1, 1}; 78 float inputValue[3][2][2] = {1}; 79 float shapeValue[3] = {4, 2, 2}; 80 float outputValue[4][2][2] = {0}; 82 … OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 12*sizeof(float)}; [all …]
|