Files
composable_kernel/include/ck_tile/ops/common/streamk_common.hpp
2025-12-14 22:12:40 +00:00

16 lines
302 B
C++

// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
// SPDX-License-Identifier: MIT
#pragma once
#include "ck_tile/core.hpp"
namespace ck_tile {
enum StreamKReductionStrategy : uint32_t
{
Atomic = 0u,
Reduction = 1u,
TreeReduction = 2u
};
} // namespace ck_tile