| 715 | |
| 716 | template <typename T> |
| 717 | Status CreateResource(OpKernelContext* ctx, const ResourceHandle& p, T* value) { |
| 718 | TF_RETURN_IF_ERROR(internal::ValidateDeviceAndType<T>(ctx, p)); |
| 719 | return ctx->resource_manager()->Create(p.container(), p.name(), value); |
| 720 | } |
| 721 | |
| 722 | template <typename T, bool use_dynamic_cast> |
| 723 | Status LookupResource(OpKernelContext* ctx, const ResourceHandle& p, |