James Reed
23e526e6ff
Fix SourceRange comparison
...
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/23341
Test Plan: Imported from OSS
Differential Revision: D16505398
Pulled By: jamesr66a
fbshipit-source-id: 0bf6a1a054c7749c0a3334654d5746dd9f5dee96
2019-07-26 18:08:43 -07:00
James Reed
ffa15d2285
Load original SourceRanges on import ( #22180 )
...
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/22180
ghimport-source-id: efa46dcb845c099f0a746f523901ab2c2cd3b004
Test Plan: Imported from OSS
Differential Revision: D15981425
Pulled By: jamesr66a
fbshipit-source-id: bef682bd13c1a5be95bdb97e025690c6f2d523d3
2019-07-01 21:14:39 -07:00
James Reed
671782d88a
Refactor file:line:col to be less ugly ( #22177 )
...
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/22177
ghimport-source-id: e35f068c2d39bd8fa2058a9bfc0b1a3856f9383d
Test Plan: Imported from OSS
Differential Revision: D15981424
Pulled By: jamesr66a
fbshipit-source-id: b7748c5cfd4f8ea594314cb601a2b8045173700a
2019-07-01 21:14:28 -07:00
James Reed
76deb450c6
Record source/line info in SourceRange and report in highlight ( #21157 )
...
Summary:
Resubmission of https://github.com/pytorch/pytorch/pull/20898 with flake8 fix
Pull Request resolved: https://github.com/pytorch/pytorch/pull/21157
Reviewed By: zdevito
Differential Revision: D15560324
Pulled By: jamesr66a
fbshipit-source-id: fc4e429eac03d2768f758b19c9d43e0bb614c2b8
2019-05-30 15:45:30 -07:00
Edward Yang
e9df9e7960
Revert D15552424: [pytorch][PR] [JIT] Record source/line info in SourceRange and report in highlight
...
Differential Revision:
D15552424
Original commit changeset: 78d0f0de03f7
fbshipit-source-id: cc24f62189b7bbcdc1406912cfb3d4ca52b8e67e
2019-05-30 05:17:15 -07:00
James Reed
6875018793
Record source/line info in SourceRange and report in highlight ( #20898 )
...
Summary:
Resolves https://github.com/pytorch/lockdown/issues/29
Examples:
```
import torch
torch.jit.script
def foobar(x):
return torch.blargh(xyz)
==
RuntimeError:
object has no attribute blargh:
at compile.py:5:12
torch.jit.script
def foo(x):
return torch.blargh(x)
~~~~~~~~~~~~ <--- HERE
```
It also gets the correct column number in the case where the original source file has common leading whitespace in front of the callable:
```
import torch
with torch.no_grad():
torch.jit.script
def foo(x):
return torch.blargh(x)
==
RuntimeError:
object has no attribute blargh:
at compile_leading.py:6:24
torch.jit.script
def foo(x):
return torch.blargh(x)
~~~~~~~~~~~~ <--- HERE
```
Pull Request resolved: https://github.com/pytorch/pytorch/pull/20898
Differential Revision: D15552424
Pulled By: jamesr66a
fbshipit-source-id: 78d0f0de03f7ccbf3e7ea193a1b4eced57ea5d69
2019-05-29 21:32:33 -07:00
Zachary DeVito
3afd99680c
Remove SourceLocation (respin) ( #20333 )
...
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/20333
ghimport-source-id: e64075bb82067224463e9955d10bd13967d1975d
Differential Revision: D15284081
Pulled By: zdevito
fbshipit-source-id: ac26ae48392b9daff08f460529c06af8f4e4722a
2019-05-09 16:17:33 -07:00
Wanchao Liang
e870b11ae6
Revert D15275731: Remote SourceLocation
...
Differential Revision:
D15275731
Original commit changeset: f4da178c3137
fbshipit-source-id: 830b79735eb2dadc4795b5aae407826bf20ef121
2019-05-09 13:07:11 -07:00
Zachary DeVito
eca91de5d2
Remote SourceLocation ( #20300 )
...
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/20300
ghimport-source-id: 06f606c4db3b70b1d2ed9f6ed4542c3f703c4e17
Differential Revision: D15275731
Pulled By: zdevito
fbshipit-source-id: f4da178c31372c2264feb9f99476b9c9aa66c1f2
2019-05-09 11:48:29 -07:00