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
6b9a4bd5
Commit
6b9a4bd5
authored
Apr 23, 2024
by
Jun Liu
Browse files
Merge branch 'amd-develop-staging-0423' into amd-master
parents
56de337f
c5f1cdf7
Changes
364
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
13 deletions
+6
-13
test/transpose/CMakeLists.txt
test/transpose/CMakeLists.txt
+4
-9
test/transpose/test_transpose_xdl.cpp
test/transpose/test_transpose_xdl.cpp
+0
-0
test/wrapper/CMakeLists.txt
test/wrapper/CMakeLists.txt
+2
-4
test/wrapper/test_wrapper_gemm_xdl.cpp
test/wrapper/test_wrapper_gemm_xdl.cpp
+0
-0
No files found.
test/transpose/CMakeLists.txt
View file @
6b9a4bd5
list
(
APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942
)
set
(
target 0
)
foreach
(
gpu IN LISTS GPU_TARGETS
)
if
(
gpu IN_LIST gpu_list AND target EQUAL 0
)
add_gtest_executable
(
test_transpose test_transpose.cpp
)
target_link_libraries
(
test_transpose PRIVATE utility device_transpose_instance
)
set
(
target 1
)
endif
()
endforeach
()
add_gtest_executable
(
test_transpose test_transpose_xdl.cpp
)
if
(
result EQUAL 0
)
target_link_libraries
(
test_transpose PRIVATE utility device_transpose_instance
)
endif
()
test/transpose/test_transpose.cpp
→
test/transpose/test_transpose
_xdl
.cpp
View file @
6b9a4bd5
File moved
test/wrapper/CMakeLists.txt
View file @
6b9a4bd5
...
...
@@ -12,10 +12,8 @@ add_dependencies(test_wrapper test_wrapper_copy)
add_gtest_executable
(
test_wrapper_partition test_wrapper_partition.cpp
)
target_link_libraries
(
test_wrapper_partition PRIVATE utility
)
add_dependencies
(
test_wrapper test_wrapper_partition
)
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"
)
add_gtest_executable
(
test_wrapper_gemm test_wrapper_gemm.cpp
)
add_gtest_executable
(
test_wrapper_gemm test_wrapper_gemm_xdl.cpp
)
if
(
result EQUAL 0
)
target_link_libraries
(
test_wrapper_gemm PRIVATE utility
)
add_dependencies
(
test_wrapper test_wrapper_gemm
)
endif
()
test/wrapper/test_wrapper_gemm.cpp
→
test/wrapper/test_wrapper_gemm
_xdl
.cpp
View file @
6b9a4bd5
File moved
Prev
1
…
15
16
17
18
19
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