| 752 | |
| 753 | template <typename T> |
| 754 | Status LookupOrCreateResource(OpKernelContext* ctx, const ResourceHandle& p, |
| 755 | T** value, std::function<Status(T**)> creator) { |
| 756 | TF_RETURN_IF_ERROR(internal::ValidateDeviceAndType<T>(ctx, p)); |
| 757 | return ctx->resource_manager()->LookupOrCreate(p.container(), p.name(), value, |
| 758 | creator); |
| 759 | } |
| 760 | |
| 761 | template <typename T> |
| 762 | Status LookupOrCreateResource(OpKernelContext* ctx, const ResourceHandle& p, |
nothing calls this directly
no test coverage detected