fix the cmake option syntax (#1117)

[ROCm/composable_kernel commit: fbf31a2ea3]
This commit is contained in:
Illia Silin
2024-01-03 07:56:44 -08:00
committed by GitHub
parent 5a2a9efca7
commit 006e903d91

View File

@@ -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)