| 361 | } |
| 362 | |
| 363 | int LITE_set_stream_id(LiteNetwork network, int stream_id) { |
| 364 | LITE_CAPI_BEGIN(); |
| 365 | LITE_ASSERT(network, "The network pass to LITE api is null"); |
| 366 | static_cast<lite::Network*>(network)->set_stream_id(stream_id); |
| 367 | LITE_CAPI_END(); |
| 368 | } |
| 369 | |
| 370 | int LITE_get_stream_id(const LiteNetwork network, int* stream_id) { |
| 371 | LITE_CAPI_BEGIN(); |
nothing calls this directly
no test coverage detected