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
MIGraphX
Commits
b88c3f30
Commit
b88c3f30
authored
Nov 09, 2023
by
Umang Yadav
Browse files
Move fp8 to last inside enum
parent
32656dda
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
src/api/include/migraphx/migraphx.h
src/api/include/migraphx/migraphx.h
+2
-2
src/include/migraphx/shape.hpp
src/include/migraphx/shape.hpp
+2
-2
tools/api/migraphx.h
tools/api/migraphx.h
+2
-2
No files found.
src/api/include/migraphx/migraphx.h
View file @
b88c3f30
...
...
@@ -37,7 +37,6 @@
m(half_type, half) \
m(float_type, float) \
m(double_type, double) \
m(float8_type, fp8e4m3fnuz) \
m(uint8_type, uint8_t) \
m(int8_type, int8_t) \
m(uint16_type, uint16_t) \
...
...
@@ -45,7 +44,8 @@
m(int32_type, int32_t) \
m(int64_type, int64_t) \
m(uint32_type, uint32_t) \
m(uint64_type, uint64_t)
m(uint64_type, uint64_t) \
m(float8_type, fp8e4m3fnuz)
// clang-format on
#ifdef __cplusplus
...
...
src/include/migraphx/shape.hpp
View file @
b88c3f30
...
...
@@ -54,7 +54,6 @@ struct MIGRAPHX_EXPORT shape
m(half_type, half) \
m(float_type, float) \
m(double_type, double) \
m(float8_type, migraphx_fp8::fp8e4m3fnuz) \
m(uint8_type, uint8_t) \
m(int8_type, int8_t) \
m(uint16_type, uint16_t) \
...
...
@@ -62,7 +61,8 @@ struct MIGRAPHX_EXPORT shape
m(int32_type, int32_t) \
m(int64_type, int64_t) \
m(uint32_type, uint32_t) \
m(uint64_type, uint64_t)
m(uint64_type, uint64_t) \
m(float8_type, migraphx_fp8::fp8e4m3fnuz)
// clang-format on
#define MIGRAPHX_SHAPE_GENERATE_ENUM_TYPES(x, t) x,
...
...
tools/api/migraphx.h
View file @
b88c3f30
...
...
@@ -37,7 +37,6 @@
m(half_type, half) \
m(float_type, float) \
m(double_type, double) \
m(float8_type, migraphx_fp8::fp8e4m3fnuz) \
m(uint8_type, uint8_t) \
m(int8_type, int8_t) \
m(uint16_type, uint16_t) \
...
...
@@ -45,7 +44,8 @@
m(int32_type, int32_t) \
m(int64_type, int64_t) \
m(uint32_type, uint32_t) \
m(uint64_type, uint64_t)
m(uint64_type, uint64_t) \
m(float8_type, migraphx_fp8::fp8e4m3fnuz)
// clang-format on
#ifdef __cplusplus
...
...
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