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:
263263 parameters :
264264 torch-build :
265265 type : string
266- default : " 2.0 .0.dev20230219 +cu117"
266+ default : " 2.1 .0.dev20230314 +cu117"
267267 torch-build-index :
268268 type : string
269269 default : " https://download.pytorch.org/whl/nightly/cu117"
@@ -1171,7 +1171,7 @@ parameters:
11711171 # Nightly platform config
11721172 torch-build :
11731173 type : string
1174- default : " 2.0 .0.dev20230219 +cu117"
1174+ default : " 2.1 .0.dev20230314 +cu117"
11751175 torch-build-index :
11761176 type : string
11771177 default : " https://download.pytorch.org/whl/nightly/cu117"
Original file line number Diff line number Diff line change 11numpy
22pybind11 == 2.6.2
33--extra-index-url https://download.pytorch.org/whl/nightly/cu117
4- torch == 2.0 .0.dev20230219 +cu117
4+ torch == 2.1 .0.dev20230314 +cu117
55torchvision == 0.15.0.dev20230219+cu117
66--extra-index-url https://pypi.ngc.nvidia.com
77tensorrt == 8.5.1.7
Original file line number Diff line number Diff line change @@ -42,28 +42,24 @@ def __init__(
4242 capture_scalar_outputs : bool = True ,
4343 guard_nn_modules : bool = True ,
4444 dynamic_shapes : bool = True ,
45- specialize_int_float : bool = True ,
4645 verbose : bool = True ,
4746 ) -> None :
4847
4948 self .capture_scalar_outputs = capture_scalar_outputs
5049 self .guard_nn_modules = guard_nn_modules
5150 self .dynamic_shapes = dynamic_shapes
52- self .specialize_int_float = specialize_int_float
5351 self .verbose = verbose
5452
5553 def activate (self ) -> None :
5654 torchdynamo .config .capture_scalar_outputs = self .capture_scalar_outputs
5755 torchdynamo .config .guard_nn_modules = self .guard_nn_modules
5856 torchdynamo .config .dynamic_shapes = self .dynamic_shapes
59- torchdynamo .config .specialize_int_float = self .specialize_int_float
6057 torchdynamo .config .verbose = self .verbose
6158
6259 def deactivate (self ) -> None :
6360 torchdynamo .config .capture_scalar_outputs = True
6461 torchdynamo .config .guard_nn_modules = True
6562 torchdynamo .config .dynamic_shapes = True
66- torchdynamo .config .specialize_int_float = True
6763 torchdynamo .config .verbose = True
6864
6965
You can’t perform that action at this time.
0 commit comments