Skip to content

Commit

Permalink
fix the cmake option syntax (#1117)
Browse files Browse the repository at this point in the history
  • Loading branch information
illsilin authored Jan 3, 2024
1 parent 4234b3a commit fbf31a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ elseif(CK_PARALLEL_COMPILE_JOBS)
endif()


option(USE_BITINT_EXTENSION_INT4, "Whether to enable clang's BitInt extension to provide int4 data type." OFF)
option(USE_OPT_NAVI3X, "Whether to enable LDS cumode and Wavefront32 mode for NAVI3X silicons." OFF)
option(USE_BITINT_EXTENSION_INT4 "Whether to enable clang's BitInt extension to provide int4 data type." OFF)
option(USE_OPT_NAVI3X "Whether to enable LDS cumode and Wavefront32 mode for NAVI3X silicons." OFF)

if(USE_BITINT_EXTENSION_INT4)
add_compile_definitions(CK_EXPERIMENTAL_BIT_INT_EXTENSION_INT4)
Expand Down

0 comments on commit fbf31a2

Please sign in to comment.