| 361 | TFE_ContextOptions* TFE_NewContextOptions() { return new TFE_ContextOptions; } |
| 362 | |
| 363 | void TFE_ContextOptionsSetConfig(TFE_ContextOptions* options, const void* proto, |
| 364 | size_t proto_len, TF_Status* status) { |
| 365 | TF_SetConfig(&options->session_options, proto, proto_len, status); |
| 366 | } |
| 367 | |
| 368 | void TFE_ContextOptionsSetAsync(TFE_ContextOptions* options, |
| 369 | unsigned char enable) { |
no test coverage detected