| 344 | } |
| 345 | |
| 346 | Status IteratorHandleOp::VerifyResource(IteratorResource* resource) { |
| 347 | TF_RETURN_IF_ERROR( |
| 348 | VerifyTypesMatch(output_dtypes_, resource->output_dtypes())); |
| 349 | TF_RETURN_IF_ERROR( |
| 350 | VerifyShapesCompatible(output_shapes_, resource->output_shapes())); |
| 351 | return Status::OK(); |
| 352 | } |
| 353 | |
| 354 | FunctionLibraryRuntime* IteratorHandleOp::CreatePrivateFLR( |
| 355 | OpKernelContext* ctx, std::unique_ptr<DeviceMgr>* device_mgr, |
nothing calls this directly
no test coverage detected