| 633 | const InstantiateOptions& options, |
| 634 | Handle* handle) = 0; |
| 635 | Status Instantiate(const string& function_name, AttrSlice attrs, |
| 636 | Handle* handle) { |
| 637 | auto opts = absl::make_unique<InstantiateOptions>(); |
| 638 | return Instantiate(function_name, attrs, *opts, handle); |
| 639 | } |
| 640 | |
| 641 | // Releases state associated with the handle. |
| 642 | virtual Status ReleaseHandle(Handle handle) = 0; |
nothing calls this directly
no test coverage detected