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
composable_kernel_ROCM
Commits
17617a15
Commit
17617a15
authored
Feb 06, 2025
by
Andriy Roshchenko
Browse files
WIP: Enabling gfx90a build
parent
e351e3c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
example/67_gemm_microscaling/gemm_mx_common.hpp
example/67_gemm_microscaling/gemm_mx_common.hpp
+0
-2
example/67_gemm_microscaling/gemm_mx_fp8.cpp
example/67_gemm_microscaling/gemm_mx_fp8.cpp
+6
-2
No files found.
example/67_gemm_microscaling/gemm_mx_common.hpp
View file @
17617a15
...
@@ -19,8 +19,6 @@
...
@@ -19,8 +19,6 @@
#include "ck/library/utility/fill.hpp"
#include "ck/library/utility/fill.hpp"
#include "ck/library/utility/host_tensor.hpp"
#include "ck/library/utility/host_tensor.hpp"
using
ScaleDataType
=
ck
::
e8m0_bexp_t
;
template
<
ck
::
index_t
...
Is
>
template
<
ck
::
index_t
...
Is
>
using
S
=
ck
::
Sequence
<
Is
...
>
;
using
S
=
ck
::
Sequence
<
Is
...
>
;
...
...
example/67_gemm_microscaling/gemm_mx_fp8.cpp
View file @
17617a15
...
@@ -13,11 +13,15 @@ using XDataType = ck::e8m0_bexp_t;
...
@@ -13,11 +13,15 @@ using XDataType = ck::e8m0_bexp_t;
#endif
#endif
using
AccDataType
=
float
;
using
AccDataType
=
float
;
using
CShuffleDataType
=
float
;
using
CShuffleDataType
=
float
;
using
CDataType
=
float
;
#if 1
using
CDataType
=
ck
::
half_t
;
#else
using
CDataType
=
float
;
#endif
using
ALayout
=
Row
;
using
ALayout
=
Row
;
using
BLayout
=
Col
;
using
BLayout
=
Col
;
using
CLayout
=
Row
;
using
CLayout
=
Col
;
using
CElementOp
=
PassThrough
;
// elementwise transformation for C matrix
using
CElementOp
=
PassThrough
;
// elementwise transformation for C matrix
...
...
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