Skip to content

Commit e54d8e0

Browse files
committed
Fix typo
1 parent 44a402b commit e54d8e0

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

pybind_interface/avx2/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if(WIN32)
1919
add_compile_options(/arch:AVX2 /openmp)
2020
# Only apply /O2 if the configuration is RELEASE.
2121
# This prevents a conflict with /RTC1 in DEBUG builds.
22-
add_compile_options($<$<CONFIG:RELEASE>:/O2>
22+
add_compile_options($<$<CONFIG:RELEASE>:/O2>)
2323
else()
2424
add_compile_options(-mavx2 -mfma -O3 -flto=auto)
2525
endif()

pybind_interface/avx512/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if(WIN32)
1919
add_compile_options(/arch:AVX512 /openmp)
2020
# Only apply /O2 if the configuration is RELEASE.
2121
# This prevents a conflict with /RTC1 in DEBUG builds.
22-
add_compile_options($<$<CONFIG:RELEASE>:/O2>
22+
add_compile_options($<$<CONFIG:RELEASE>:/O2>)
2323
else()
2424
add_compile_options(-mavx512f -mbmi2 -O3 -flto=auto)
2525
endif()

pybind_interface/basic/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if(WIN32)
1919
add_compile_options(/openmp)
2020
# Only apply /O2 if the configuration is RELEASE.
2121
# This prevents a conflict with /RTC1 in DEBUG builds.
22-
add_compile_options($<$<CONFIG:RELEASE>:/O2>
22+
add_compile_options($<$<CONFIG:RELEASE>:/O2>)
2323
else()
2424
add_compile_options(-O3 -flto=auto)
2525
endif()

pybind_interface/cuda/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if(WIN32)
2121

2222
# Only apply /O2 if the configuration is RELEASE.
2323
# This prevents a conflict with /RTC1 in DEBUG builds.
24-
add_compile_options($<$<CONFIG:RELEASE>:/O2>
24+
add_compile_options($<$<CONFIG:RELEASE>:/O2>)
2525
else()
2626
add_compile_options(-O3 -flto=auto)
2727
endif()

pybind_interface/custatevec/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if(WIN32)
1919
add_compile_options(/openmp)
2020
# Only apply /O2 if the configuration is RELEASE.
2121
# This prevents a conflict with /RTC1 in DEBUG builds.
22-
add_compile_options($<$<CONFIG:RELEASE>:/O2>
22+
add_compile_options($<$<CONFIG:RELEASE>:/O2>)
2323
else()
2424
add_compile_options(-O3 -flto=auto)
2525
endif()

pybind_interface/decide/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if(WIN32)
2222
add_compile_options(/openmp)
2323
# Only apply /O2 if the configuration is RELEASE.
2424
# This prevents a conflict with /RTC1 in DEBUG builds.
25-
add_compile_options($<$<CONFIG:RELEASE>:/O2>
25+
add_compile_options($<$<CONFIG:RELEASE>:/O2>)
2626
else()
2727
add_compile_options(-O3 -flto=auto)
2828
endif()

pybind_interface/hip/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if(WIN32)
1919
add_compile_options(/openmp)
2020
# Only apply /O2 if the configuration is RELEASE.
2121
# This prevents a conflict with /RTC1 in DEBUG builds.
22-
add_compile_options($<$<CONFIG:RELEASE>:/O2>
22+
add_compile_options($<$<CONFIG:RELEASE>:/O2>)
2323
else()
2424
add_compile_options(-O3 -flto=auto)
2525
endif()

pybind_interface/sse/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if(WIN32)
1919
add_compile_options(/openmp)
2020
# Only apply /O2 if the configuration is RELEASE.
2121
# This prevents a conflict with /RTC1 in DEBUG builds.
22-
add_compile_options($<$<CONFIG:RELEASE>:/O2>
22+
add_compile_options($<$<CONFIG:RELEASE>:/O2>)
2323
else()
2424
add_compile_options(-msse4.1 -O3 -flto=auto)
2525
endif()

0 commit comments

Comments
 (0)