Although [`TF_LoadPluggableDeviceLibrary`](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/c/c_api_experimental.cc#L725) is an experimental API, it is necessary to use GPU on platform like Mac Arm. I tried to include this API in code generating but it caused other errors. Now I always add it manually. ```rust extern "C" { pub fn TF_LoadPluggableDeviceLibrary( library_filename: *const ::std::os::raw::c_char, status: *mut TF_Status, ) -> *mut TF_Library; } ``` This API had better be included.