mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 09:16:52 +00:00
[CK_TILE] Add pooling in tile_engine ## Motivation <!-- Explain the purpose of this PR and the goals it aims to achieve. --> Add pooling in ck tile engine ## Technical Details <!-- Explain the changes along with any relevant GitHub links. --> ## Test Plan <!-- Explain any relevant testing done to verify this PR. --> ## Test Result <!-- Briefly summarize test outcomes. --> ## Submission Checklist - [ ] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests.
13 lines
295 B
CMake
13 lines
295 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
include_directories(BEFORE
|
|
${CMAKE_CURRENT_LIST_DIR}/include
|
|
)
|
|
|
|
add_subdirectory(ops/gemm)
|
|
add_subdirectory(ops/gemm_streamk)
|
|
add_subdirectory(ops/pooling)
|
|
add_subdirectory(ops/reduce)
|
|
|