(reader, name, v)
| 182 | matched_pairs = [] |
| 183 | |
| 184 | def f(reader, name, v): |
| 185 | val = reader.get_tensor(name) |
| 186 | val = SessionUpdate.relaxed_value_for_var(val, v, ignore_mismatch=True) |
| 187 | if val is not None: |
| 188 | matched_pairs.append((v, val)) |
| 189 | |
| 190 | with sess.as_default(): |
| 191 | self._match_vars(f) |
nothing calls this directly
no test coverage detected