mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-11 17:00:18 +00:00
fix enum issue
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#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"
|
||||
Reference in New Issue
Block a user