Searched defs:CropModel2 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | crop_test.cpp | 48 struct CropModel2 { struct 49 const std::vector<int32_t> input_shape = {3, 2, 2}; 50 const std::vector<int32_t> shape_shape = {3}; 51 const std::vector<int32_t> output_shape = {3, 2, 2}; 53 int64_t axisValue[1] = {1}; 54 std::vector<int64_t> offsetsValue = {0, 2, 2}; 55 float inputValue[3][2][2] = {1}; 56 float shapeValue[3] = {3, 2, 2}; 57 float outputValue[3][2][2] = {0}; 59 … OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 12*sizeof(float)}; [all …]
|