| 2523 | } |
| 2524 | |
| 2525 | void TF_ServerJoin(TF_Server* server, TF_Status* status) { |
| 2526 | #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD) |
| 2527 | status->status = tensorflow::errors::Unimplemented( |
| 2528 | "Server functionality is not supported on mobile"); |
| 2529 | #else |
| 2530 | status->status = server->server->Join(); |
| 2531 | #endif // defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD) |
| 2532 | } |
| 2533 | |
| 2534 | const char* TF_ServerTarget(TF_Server* server) { |
| 2535 | #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD) |
no test coverage detected