mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 14:29:05 +00:00
* chore(copyright) update library wide CMakeLists.txt files copyright header template * Fix build --------- Co-authored-by: Sami Remes <samremes@amd.com>
8 lines
369 B
CMake
8 lines
369 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
if((DTYPES MATCHES "fp8" AND DTYPES MATCHES "fp16") OR (NOT DEFINED DTYPES AND GPU_TARGETS MATCHES "gfx94"))
|
|
add_executable(client_splitK_gemm splitK_gemm_fp16_f8.cpp)
|
|
target_link_libraries(client_splitK_gemm PRIVATE composable_kernel::device_gemm_operations)
|
|
endif()
|