From 37c3bc1a447cee36bdcaa960f5621f163cd4d251 Mon Sep 17 00:00:00 2001 From: Alan Turner Date: Tue, 10 Oct 2023 23:06:58 +0000 Subject: [PATCH] Add empty config.h to headers --- library/src/jit_library/src/common.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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)