(extra_feed_dict, new_feeds)
| 46 | |
| 47 | |
| 48 | def _extra_feeds(extra_feed_dict, new_feeds): |
| 49 | if not extra_feed_dict: |
| 50 | return new_feeds |
| 51 | r = {} |
| 52 | r.update(extra_feed_dict) |
| 53 | r.update(new_feeds) |
| 54 | return r |
| 55 | |
| 56 | |
| 57 | def _compute_theoretical_jacobian(x, x_shape, x_data, dy, dy_shape, dx, |
no test coverage detected