mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-15 02:27:57 +00:00
24 lines
575 B
C++
24 lines
575 B
C++
// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#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
|