mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-24 09:07:39 +00:00
19 lines
390 B
C++
19 lines
390 B
C++
// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <unordered_set>
|
|
#include <numeric>
|
|
#include <iterator>
|
|
|
|
namespace ck {
|
|
namespace host {
|
|
|
|
std::size_t integer_divide_ceil(std::size_t x, std::size_t y);
|
|
|
|
const std::unordered_set<std::string>& get_xdlop_archs();
|
|
} // namespace host
|
|
} // namespace ck
|