Skip to content

Commit b4d05e0

Browse files
committed
[BugFix,Feature] Optional non_blocking in set, to_module and update (#718)
(cherry picked from commit 2dc0285)
1 parent f601549 commit b4d05e0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ def write_version_file(version):
6565
def _get_pytorch_version(is_nightly):
6666
# if "PYTORCH_VERSION" in os.environ:
6767
# return f"torch=={os.environ['PYTORCH_VERSION']}"
68-
if is_nightly:
69-
return "torch>=2.3.0.dev"
70-
return "torch>=2.2.1"
68+
return "torch==2.2.2"
7169

7270

7371
def _get_packages():

0 commit comments

Comments
 (0)