| 263 | } |
| 264 | |
| 265 | int LITE_wait(const LiteNetwork network) { |
| 266 | LITE_CAPI_BEGIN(); |
| 267 | LITE_ASSERT(network, "The network pass to LITE api is null"); |
| 268 | static_cast<lite::Network*>(network)->wait(); |
| 269 | LITE_CAPI_END(); |
| 270 | } |
| 271 | |
| 272 | int LITE_get_io_tensor( |
| 273 | LiteNetwork network, const char* io_name, LiteTensorPhase phase, |