mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-03 21:21:22 +00:00
Refactor and integrate CK GPU references into ckProfiler. - All convolution layouts and groupings supported for all three directions - Unit tests verifying GPU and CPU reference is the same - Support added to profiler (do_verification = 2 enables GPU reference) - One profiler-based test per direction changed to GPU reference to demonstrate usag Closes AICK-427
13 lines
423 B
CMake
13 lines
423 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
add_gtest_executable(test_convnd_fwd convnd_fwd_xdl.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_convnd_fwd PRIVATE utility device_conv2d_fwd_instance)
|
|
endif()
|
|
|
|
add_gtest_executable(test_convnd_fwd_naive convnd_fwd_naive.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_convnd_fwd_naive PRIVATE utility)
|
|
endif()
|