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
e60c5aea
Unverified
Commit
e60c5aea
authored
Feb 15, 2024
by
Illia Silin
Committed by
GitHub
Feb 15, 2024
Browse files
Merge pull request #36 from ROCm/lwpck-1299
Initial MI350 enablement.
parents
29dcb956
63df00cd
Changes
46
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
test/gemm_layernorm/CMakeLists.txt
test/gemm_layernorm/CMakeLists.txt
+1
-1
test/gemm_split_k/CMakeLists.txt
test/gemm_split_k/CMakeLists.txt
+1
-1
test/grouped_convnd_bwd_weight/CMakeLists.txt
test/grouped_convnd_bwd_weight/CMakeLists.txt
+2
-2
test/grouped_gemm/CMakeLists.txt
test/grouped_gemm/CMakeLists.txt
+1
-1
test/transpose/CMakeLists.txt
test/transpose/CMakeLists.txt
+1
-1
test/wrapper/CMakeLists.txt
test/wrapper/CMakeLists.txt
+1
-1
No files found.
test/gemm_layernorm/CMakeLists.txt
View file @
e60c5aea
list
(
APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942
)
list
(
APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942
gfx950
)
set
(
target 0
)
foreach
(
gpu IN LISTS GPU_TARGETS
)
if
(
gpu IN_LIST gpu_list AND target EQUAL 0
)
...
...
test/gemm_split_k/CMakeLists.txt
View file @
e60c5aea
list
(
APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942
)
list
(
APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942
gfx950
)
set
(
target 0
)
foreach
(
gpu IN LISTS GPU_TARGETS
)
if
(
gpu IN_LIST gpu_list AND target EQUAL 0
)
...
...
test/grouped_convnd_bwd_weight/CMakeLists.txt
View file @
e60c5aea
list
(
APPEND gpu_list_xdl gfx908 gfx90a gfx940 gfx941 gfx942
)
list
(
APPEND gpu_list_xdl gfx908 gfx90a gfx940 gfx941 gfx942
gfx950
)
list
(
APPEND gpu_list_wmma gfx1100 gfx1101 gfx1102
)
set
(
target 0
)
...
...
@@ -17,4 +17,4 @@ foreach(gpu IN LISTS GPU_TARGETS)
target_link_libraries
(
test_grouped_convnd_bwd_weight_interface PRIVATE utility
)
set
(
target 1
)
endif
()
endforeach
()
\ No newline at end of file
endforeach
()
test/grouped_gemm/CMakeLists.txt
View file @
e60c5aea
list
(
APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942
)
list
(
APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942
gfx950
)
set
(
target 0
)
foreach
(
gpu IN LISTS GPU_TARGETS
)
if
(
gpu IN_LIST gpu_list AND target EQUAL 0
)
...
...
test/transpose/CMakeLists.txt
View file @
e60c5aea
list
(
APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942
)
list
(
APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942
gfx950
)
set
(
target 0
)
foreach
(
gpu IN LISTS GPU_TARGETS
)
if
(
gpu IN_LIST gpu_list AND target EQUAL 0
)
...
...
test/wrapper/CMakeLists.txt
View file @
e60c5aea
...
...
@@ -8,7 +8,7 @@ add_gtest_executable(test_partition test_partition.cpp)
target_link_libraries
(
test_partition PRIVATE utility
)
if
(
GPU_TARGETS MATCHES
"gfx908"
OR GPU_TARGETS MATCHES
"gfx90a"
OR
GPU_TARGETS MATCHES
"gfx940"
OR GPU_TARGETS MATCHES
"gfx941"
OR
GPU_TARGETS MATCHES
"gfx942"
)
GPU_TARGETS MATCHES
"gfx942"
OR GPU_TARGETS MATCHES
"gfx950"
)
add_gtest_executable
(
test_gemm test_gemm.cpp
)
target_link_libraries
(
test_gemm PRIVATE utility
)
endif
()
Prev
1
2
3
Next
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