(feed_dict, fetch_list, target_list, options, run_metadata)
| 1353 | # pylint: enable=protected-access |
| 1354 | |
| 1355 | def _run_fn(feed_dict, fetch_list, target_list, options, run_metadata): |
| 1356 | # Ensure any changes to the graph are reflected in the runtime. |
| 1357 | self._extend_graph() |
| 1358 | return self._call_tf_sessionrun(options, feed_dict, fetch_list, |
| 1359 | target_list, run_metadata) |
| 1360 | |
| 1361 | def _prun_fn(handle, feed_dict, fetch_list): |
| 1362 | if target_list: |
nothing calls this directly
no test coverage detected