"...git@developer.sourcefind.cn:OpenDAS/mmdetection3d.git" did not exist on "1039ad0e9ed9893e60238f8936dbfae96ea6e3cb"
Commit d626dccc authored by Chao Liu's avatar Chao Liu
Browse files

fix enum issue

parent 643ebd4f
......@@ -7,9 +7,9 @@
#include "statically_indexed_array.hpp"
#include "container_element_picker.hpp"
#include "multi_index.hpp"
#include "data_type_enum.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 "functional2.hpp"
#include "functional3.hpp"
......
......@@ -3,8 +3,8 @@
namespace ck {
// this enumerate should be synchronized with include/miopen.h
using DataTypeEnum_t = enum {
enum DataTypeEnum_t
{
Half = 0,
Float = 1,
Int32 = 2,
......
#ifndef CK_DATA_TYPE_HELPER_HPP
#define CK_DATA_TYPE_HELPER_HPP
#ifndef CK_DATA_TYPE_ENUM_HELPER_HPP
#define CK_DATA_TYPE_ENUM_HELPER_HPP
#include "data_type.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