| // SPDX-License-Identifier: MIT | |
| // Copyright (c) 2018-2024, Advanced Micro Devices, Inc. All rights reserved. | |
| namespace ck { | |
| namespace host { | |
| std::size_t integer_divide_ceil(std::size_t x, std::size_t y) | |
| { | |
| return (x + y - std::size_t{1}) / y; | |
| } | |
| const std::unordered_set<std::string>& get_xdlop_archs() | |
| { | |
| static std::unordered_set<std::string> supported_archs{"gfx90a", "gfx908", "gfx942"}; | |
| return supported_archs; | |
| } | |
| } // namespace host | |
| } // namespace ck | |