mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-02 20:51:23 +00:00
* chore(copyright) update library wide CMakeLists.txt files copyright header template * Fix build --------- Co-authored-by: Sami Remes <samremes@amd.com>
11 lines
444 B
CMake
11 lines
444 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
add_custom_target(example_im2col_col2im)
|
|
|
|
add_example_executable(example_image_to_column_f32 image_to_column_f32.cpp)
|
|
add_example_dependencies(example_im2col_col2im example_image_to_column_f32)
|
|
|
|
add_example_executable(example_column_to_image_f32 column_to_image_f32.cpp)
|
|
add_example_dependencies(example_im2col_col2im example_column_to_image_f32)
|