Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel
Commits
37c3bc1a
Commit
37c3bc1a
authored
Oct 10, 2023
by
Alan Turner
Browse files
Add empty config.h to headers
parent
7d602254
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
library/src/jit_library/src/common.cpp
library/src/jit_library/src/common.cpp
+7
-1
No files found.
library/src/jit_library/src/common.cpp
View file @
37c3bc1a
...
...
@@ -2,6 +2,7 @@
#include "ck/host/common.hpp"
#include "ck_headers.hpp"
#include <stdexcept>
#include <algorithm>
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
<
std
::
string_view
,
std
::
string_view
>
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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment