File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed
torch_tensorrt/fx/tracer/dispatch_tracer Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ commands:
263
263
parameters :
264
264
torch-build :
265
265
type : string
266
- default : " 2.0 .0.dev20230219 +cu117"
266
+ default : " 2.1 .0.dev20230314 +cu117"
267
267
torch-build-index :
268
268
type : string
269
269
default : " https://download.pytorch.org/whl/nightly/cu117"
@@ -1171,7 +1171,7 @@ parameters:
1171
1171
# Nightly platform config
1172
1172
torch-build :
1173
1173
type : string
1174
- default : " 2.0 .0.dev20230219 +cu117"
1174
+ default : " 2.1 .0.dev20230314 +cu117"
1175
1175
torch-build-index :
1176
1176
type : string
1177
1177
default : " https://download.pytorch.org/whl/nightly/cu117"
Original file line number Diff line number Diff line change 1
1
numpy
2
2
pybind11 == 2.6.2
3
3
--extra-index-url https://download.pytorch.org/whl/nightly/cu117
4
- torch == 2.0 .0.dev20230219 +cu117
4
+ torch == 2.1 .0.dev20230314 +cu117
5
5
torchvision == 0.15.0.dev20230219+cu117
6
6
--extra-index-url https://pypi.ngc.nvidia.com
7
7
tensorrt == 8.5.1.7
Original file line number Diff line number Diff line change @@ -42,28 +42,24 @@ def __init__(
42
42
capture_scalar_outputs : bool = True ,
43
43
guard_nn_modules : bool = True ,
44
44
dynamic_shapes : bool = True ,
45
- specialize_int_float : bool = True ,
46
45
verbose : bool = True ,
47
46
) -> None :
48
47
49
48
self .capture_scalar_outputs = capture_scalar_outputs
50
49
self .guard_nn_modules = guard_nn_modules
51
50
self .dynamic_shapes = dynamic_shapes
52
- self .specialize_int_float = specialize_int_float
53
51
self .verbose = verbose
54
52
55
53
def activate (self ) -> None :
56
54
torchdynamo .config .capture_scalar_outputs = self .capture_scalar_outputs
57
55
torchdynamo .config .guard_nn_modules = self .guard_nn_modules
58
56
torchdynamo .config .dynamic_shapes = self .dynamic_shapes
59
- torchdynamo .config .specialize_int_float = self .specialize_int_float
60
57
torchdynamo .config .verbose = self .verbose
61
58
62
59
def deactivate (self ) -> None :
63
60
torchdynamo .config .capture_scalar_outputs = True
64
61
torchdynamo .config .guard_nn_modules = True
65
62
torchdynamo .config .dynamic_shapes = True
66
- torchdynamo .config .specialize_int_float = True
67
63
torchdynamo .config .verbose = True
68
64
69
65
You can’t perform that action at this time.
0 commit comments