| 346 | } |
| 347 | |
| 348 | int LITE_set_device_id(LiteNetwork network, int device_id) { |
| 349 | LITE_CAPI_BEGIN(); |
| 350 | LITE_ASSERT(network, "The network pass to LITE api is null"); |
| 351 | static_cast<lite::Network*>(network)->set_device_id(device_id); |
| 352 | LITE_CAPI_END(); |
| 353 | } |
| 354 | |
| 355 | int LITE_get_device_id(const LiteNetwork network, int* device_id) { |
| 356 | LITE_CAPI_BEGIN(); |
nothing calls this directly
no test coverage detected