Commit d626dccc authored by Chao Liu's avatar Chao Liu
Browse files

fix enum issue

parent 643ebd4f
...@@ -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"
......
...@@ -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,
......
#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"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment