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
yangql
composable_kernel-1
Commits
d626dccc
Commit
d626dccc
authored
Aug 10, 2021
by
Chao Liu
Browse files
fix enum issue
parent
643ebd4f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
composable_kernel/include/utility/common_header.hpp
composable_kernel/include/utility/common_header.hpp
+2
-2
composable_kernel/include/utility/data_type_enum.hpp
composable_kernel/include/utility/data_type_enum.hpp
+2
-2
composable_kernel/include/utility/data_type_enum_helper.hpp
composable_kernel/include/utility/data_type_enum_helper.hpp
+2
-2
No files found.
composable_kernel/include/utility/common_header.hpp
View file @
d626dccc
...
@@ -7,9 +7,9 @@
...
@@ -7,9 +7,9 @@
#include "statically_indexed_array.hpp"
#include "statically_indexed_array.hpp"
#include "container_element_picker.hpp"
#include "container_element_picker.hpp"
#include "multi_index.hpp"
#include "multi_index.hpp"
#include "data_type_enum.hpp"
#include "data_type.hpp"
#include "data_type.hpp"
#include "data_type_helper.hpp"
#include "data_type_enum.hpp"
#include "data_type_enum_helper.hpp"
#include "functional.hpp"
#include "functional.hpp"
#include "functional2.hpp"
#include "functional2.hpp"
#include "functional3.hpp"
#include "functional3.hpp"
...
...
composable_kernel/include/utility/data_type_enum.hpp
View file @
d626dccc
...
@@ -3,8 +3,8 @@
...
@@ -3,8 +3,8 @@
namespace
ck
{
namespace
ck
{
// this enumerate should be synchronized with include/miopen.h
enum
DataTypeEnum_t
using
DataTypeEnum_t
=
enum
{
{
Half
=
0
,
Half
=
0
,
Float
=
1
,
Float
=
1
,
Int32
=
2
,
Int32
=
2
,
...
...
composable_kernel/include/utility/data_type_helper.hpp
→
composable_kernel/include/utility/data_type_
enum_
helper.hpp
View file @
d626dccc
#ifndef CK_DATA_TYPE_HELPER_HPP
#ifndef CK_DATA_TYPE_
ENUM_
HELPER_HPP
#define CK_DATA_TYPE_HELPER_HPP
#define CK_DATA_TYPE_
ENUM_
HELPER_HPP
#include "data_type.hpp"
#include "data_type.hpp"
#include "data_type_enum.hpp"
#include "data_type_enum.hpp"
...
...
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