define MNN_EXPRESS_ERROR_REPORT
| 27 | |
| 28 | //#define MNN_EXPRESS_ERROR_REPORT |
| 29 | static inline std::string numberToString(int index) { |
| 30 | char s[10]; |
| 31 | snprintf(s, 10, "%d", index); |
| 32 | return std::string(s); |
| 33 | } |
| 34 | |
| 35 | static bool HasUnknownDim(const std::vector<int>& dims) { |
| 36 | for (const int& dim : dims) { |