mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-16 19:09:59 +00:00
* initial push
* cleaned up compiler errors
* removed commented code
* build codegen folder only for gfx9 targets
* remove separate stage for codegen tests from CI
* removed commented code from CMake
---------
Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com>
Co-authored-by: illsilin <Illia.Silin@amd.com>
[ROCm/composable_kernel commit: da214a5a58]
21 lines
476 B
C++
21 lines
476 B
C++
#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
|