(session, feed_list, fetch_list, target_list)
| 1085 | |
| 1086 | # Set up a graph with feeds and fetches for partial run. |
| 1087 | def _setup_fn(session, feed_list, fetch_list, target_list): |
| 1088 | self._extend_graph() |
| 1089 | return tf_session.TF_SessionPRunSetup_wrapper(session, feed_list, |
| 1090 | fetch_list, target_list) |
| 1091 | |
| 1092 | # pylint: disable=protected-access |
| 1093 | final_fetches = [t._as_tf_output() for t in fetch_handler.fetches()] |
nothing calls this directly
no test coverage detected