(self, old_output, new_output)
| 1244 | return converted_t.t is not t |
| 1245 | |
| 1246 | def _add_conversion(self, old_output, new_output): |
| 1247 | assert isinstance(old_output, (ops.Tensor, ops.Operation)), old_output |
| 1248 | assert isinstance(new_output, (WrappedTensor, ops.Operation)), new_output |
| 1249 | self._conversion_map[old_output] = new_output |
| 1250 | |
| 1251 | def _convert_helper(self, op_or_tensor): |
| 1252 | stack = [op_or_tensor] |
no outgoing calls
no test coverage detected