(feed, feed_val)
| 59 | use_stage_subgraph_thread_pool=False, |
| 60 | stage_subgraph_thread_pool_id=0): |
| 61 | def _feed_fn(feed, feed_val): |
| 62 | for tensor_type, _, feed_fn, _ in _REGISTERED_EXPANSIONS: |
| 63 | if isinstance(feed, tensor_type): |
| 64 | return feed_fn(feed, feed_val) |
| 65 | raise TypeError('Feed argument %r has invalid type %r' % (feed, type(feed))) |
| 66 | |
| 67 | options.run_options.use_stage_subgraph_thread_pool = \ |
| 68 | use_stage_subgraph_thread_pool |
no test coverage detected