mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-10 00:15:30 +00:00
24 lines
587 B
C++
24 lines
587 B
C++
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2024-2025, Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
#include "ck/host/headers.hpp"
|
|
#include "ck_headers.hpp"
|
|
|
|
namespace ck {
|
|
namespace host {
|
|
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wglobal-constructors"
|
|
const std::string config_header = "";
|
|
#pragma clang diagnostic pop
|
|
|
|
std::unordered_map<std::string_view, std::string_view> GetHeaders()
|
|
{
|
|
auto headers = ck_headers();
|
|
headers.insert(std::make_pair("ck/config.h", config_header));
|
|
return headers;
|
|
}
|
|
|
|
} // namespace host
|
|
} // namespace ck
|