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
Commits
7295e38d
"...composable_kernel_rocm.git" did not exist on "1a66e35b6ffb4a61d603e2b974e307d2e06a21f7"
Commit
7295e38d
authored
Jun 01, 2023
by
Alan Turner
Browse files
No commit message
No commit message
parent
61386bf9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
library/src/jit_library/include/device_gemm_multiple_d.hpp
library/src/jit_library/include/device_gemm_multiple_d.hpp
+4
-2
No files found.
library/src/jit_library/include/device_gemm_multiple_d.hpp
View file @
7295e38d
...
@@ -151,11 +151,13 @@ private:
...
@@ -151,11 +151,13 @@ private:
if
(
ADataType
==
"int8_t"
and
BDataType
==
"int8_t"
)
if
(
ADataType
==
"int8_t"
and
BDataType
==
"int8_t"
)
{
{
// Change CBlockTransfer ScalarPerVector if Ds contains other types
// Change CBlockTransfer ScalarPerVector if Ds contains other types
if
(
std
::
any_of
(
DsDataType
.
begin
(),
DsDataType
.
end
(),
[](
auto
t
)
{
return
t
==
"ck::half_t"
;
}))
if
(
std
::
any_of
(
DsDataType
.
begin
(),
DsDataType
.
end
(),
[](
auto
t
)
{
return
t
==
"ck::half_t"
;
})
or
EDataType
==
"ck::half_t"
)
{
{
params
[
params
.
size
()
-
3
]
=
"8"
;
params
[
params
.
size
()
-
3
]
=
"8"
;
}
}
if
(
std
::
any_of
(
DsDataType
.
begin
(),
DsDataType
.
end
(),
[](
auto
t
)
{
return
t
==
"float"
;
}))
if
(
std
::
any_of
(
DsDataType
.
begin
(),
DsDataType
.
end
(),
[](
auto
t
)
{
return
t
==
"float"
;
})
or
EDataType
==
"float"
)
{
{
params
[
params
.
size
()
-
3
]
=
"4"
;
params
[
params
.
size
()
-
3
]
=
"4"
;
}
}
...
...
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