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
daa98dae
Commit
daa98dae
authored
Jun 26, 2023
by
carlushuang
Browse files
filter out on gfx10+
parent
108a65d7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
example/01_gemm/CMakeLists.txt
example/01_gemm/CMakeLists.txt
+0
-1
include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_streamk.hpp
...sor_operation/gpu/device/impl/device_gemm_xdl_streamk.hpp
+6
-0
No files found.
example/01_gemm/CMakeLists.txt
View file @
daa98dae
...
@@ -45,4 +45,3 @@ if(GPU_TARGETS MATCHES "gfx1100" OR GPU_TARGETS MATCHES "gfx1101" OR GPU_TARGETS
...
@@ -45,4 +45,3 @@ if(GPU_TARGETS MATCHES "gfx1100" OR GPU_TARGETS MATCHES "gfx1101" OR GPU_TARGETS
endif
()
endif
()
add_example_executable
(
example_gemm_xdl_streamk gemm_xdl_streamk.cpp
)
add_example_executable
(
example_gemm_xdl_streamk gemm_xdl_streamk.cpp
)
set_source_files_properties
(
gemm_xdl_streamk.cpp PROPERTIES COMPILE_OPTIONS
"-v;--save-temps;-Wno-gnu-line-marker"
)
\ No newline at end of file
include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_streamk.hpp
View file @
daa98dae
...
@@ -238,6 +238,12 @@ struct DeviceGemmXdlStreamK : public DeviceGemmStreamK<ALayout,
...
@@ -238,6 +238,12 @@ struct DeviceGemmXdlStreamK : public DeviceGemmStreamK<ALayout,
static
bool
IsSupportedArgument
(
const
Argument
&
karg
)
static
bool
IsSupportedArgument
(
const
Argument
&
karg
)
{
{
if
(
!
(
ck
::
get_device_name
()
==
"gfx908"
||
ck
::
get_device_name
()
==
"gfx90a"
||
ck
::
get_device_name
()
==
"gfx940"
||
ck
::
get_device_name
()
==
"gfx941"
||
ck
::
get_device_name
()
==
"gfx942"
))
{
return
false
;
}
return
GridwiseGemm
::
CheckValidity
(
karg
);
return
GridwiseGemm
::
CheckValidity
(
karg
);
}
}
...
...
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