| 57 | } |
| 58 | |
| 59 | int LITE_get_device_count(LiteDeviceType device_type, size_t* count) { |
| 60 | LITE_CAPI_BEGIN(); |
| 61 | LITE_ASSERT(count, "The ptr pass to LITE api is null"); |
| 62 | *count = lite::get_device_count(device_type); |
| 63 | LITE_CAPI_END(); |
| 64 | } |
| 65 | |
| 66 | int LITE_try_coalesce_all_free_memory() { |
| 67 | LITE_CAPI_BEGIN(); |
nothing calls this directly
no test coverage detected