Skip to content

Commit 5ea08f6

Browse files
Fix optimisation flag
1 parent 812da6d commit 5ea08f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
TORCH_MAJOR = int(torch.__version__.split(".")[0])
1717
TORCH_MINOR = int(torch.__version__.split(".")[1])
18-
extra_compile_args = ["-03"]
18+
extra_compile_args = ["-O3"]
1919
if (TORCH_MAJOR > 1) or (TORCH_MAJOR == 1 and TORCH_MINOR > 2):
2020
extra_compile_args += ["-DVERSION_GE_1_3"]
2121

0 commit comments

Comments
 (0)