diff --git a/library/src/jit_library/src/common.cpp b/library/src/jit_library/src/common.cpp index 23732a99fe..2db3aa97df 100644 --- a/library/src/jit_library/src/common.cpp +++ b/library/src/jit_library/src/common.cpp @@ -2,6 +2,7 @@ #include "ck/host/common.hpp" #include "ck_headers.hpp" #include +#include namespace ck { namespace host { @@ -18,9 +19,14 @@ std::string ToString(DataType dt) throw std::runtime_error("Incorrect data type"); } +const std::string config_header = ""; + std::unordered_map GetHeaders() { - return ck_headers(); + auto headers = ck_headers(); + headers.insert( + {"ck/config.h", config_header}); + return headers; } std::size_t integer_divide_ceil(std::size_t x, std::size_t y)