static*/
| 25 | namespace tensorflow { |
| 26 | |
| 27 | /*static*/ Status XRTGenericDeviceAccessor::GetResourceManager( |
| 28 | OpKernelContext* ctx, ResourceMgr** rm) { |
| 29 | *rm = ctx->resource_manager(); |
| 30 | return Status::OK(); |
| 31 | } |
| 32 | |
| 33 | /*static*/ Status XRTGenericDeviceAccessor::InitScopedRef( |
| 34 | OpKernelContext* ctx, int device_ordinal, ScopedRef* scoped_ref) { |
nothing calls this directly
no test coverage detected