mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 18:17:44 +00:00
* add device_gemm_wmma_cshuffle_v3_b_preshuffle.hpp
* add examples
* add instances to test
* remove duplicate code between examples
[ROCm/composable_kernel commit: 6df2d70143]
10 lines
405 B
CMake
10 lines
405 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
if(GPU_TARGETS MATCHES "gfx9[45]|gfx12")
|
|
add_gtest_executable(test_gemm_universal_preshuffle_fp8 test_gemm_universal_preshuffle_fp8.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_universal_preshuffle_fp8 PRIVATE utility device_gemm_universal_preshuffle_instance)
|
|
endif()
|
|
endif()
|