Skip to content

Commit 235fb82

Browse files
frank-weigs-olive
andauthored
Update config.yml (#1736)
Co-authored-by: gs-olive <[email protected]>
1 parent e68ba22 commit 235fb82

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

py/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
numpy
22
pybind11==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
55
torchvision==0.15.0.dev20230219+cu117
66
--extra-index-url https://pypi.ngc.nvidia.com
77
tensorrt==8.5.1.7

py/torch_tensorrt/fx/tracer/dispatch_tracer/aten_tracer.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)