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
7d6cea85
Commit
7d6cea85
authored
Mar 11, 2024
by
Jing Zhang
Browse files
fixed conflicts
parent
33328e47
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
script/cmake-ck-dev.sh
script/cmake-ck-dev.sh
+2
-2
test/wrapper/CMakeLists.txt
test/wrapper/CMakeLists.txt
+4
-3
No files found.
script/cmake-ck-dev.sh
View file @
7d6cea85
...
@@ -10,8 +10,8 @@ cmake
...
@@ -10,8 +10,8 @@ cmake
-D
CMAKE_CXX_COMPILER
=
/opt/rocm/bin/hipcc
\
-D
CMAKE_CXX_COMPILER
=
/opt/rocm/bin/hipcc
\
-D
CMAKE_CXX_FLAGS
=
"-std=c++17 -O3 -ftemplate-backtrace-limit=0 -fPIE -Wno-gnu-line-marker"
\
-D
CMAKE_CXX_FLAGS
=
"-std=c++17 -O3 -ftemplate-backtrace-limit=0 -fPIE -Wno-gnu-line-marker"
\
-D
CMAKE_BUILD_TYPE
=
Release
\
-D
CMAKE_BUILD_TYPE
=
Release
\
-D
BUILD_DEV
=
O
FF
\
-D
BUILD_DEV
=
O
N
\
-D
GPU_TARGETS
=
"gfx
1200
"
\
-D
GPU_TARGETS
=
"gfx
90a
"
\
-D
CMAKE_VERBOSE_MAKEFILE:BOOL
=
ON
\
-D
CMAKE_VERBOSE_MAKEFILE:BOOL
=
ON
\
-D
USE_BITINT_EXTENSION_INT4
=
OFF
\
-D
USE_BITINT_EXTENSION_INT4
=
OFF
\
${
MY_PROJECT_SOURCE
}
${
MY_PROJECT_SOURCE
}
test/wrapper/CMakeLists.txt
View file @
7d6cea85
...
@@ -14,7 +14,8 @@ target_link_libraries(test_wrapper_partition PRIVATE utility)
...
@@ -14,7 +14,8 @@ target_link_libraries(test_wrapper_partition PRIVATE utility)
add_dependencies
(
test_wrapper test_wrapper_partition
)
add_dependencies
(
test_wrapper test_wrapper_partition
)
if
(
GPU_TARGETS MATCHES
"gfx908"
OR GPU_TARGETS MATCHES
"gfx90a"
OR
if
(
GPU_TARGETS MATCHES
"gfx908"
OR GPU_TARGETS MATCHES
"gfx90a"
OR
GPU_TARGETS MATCHES
"gfx940"
OR GPU_TARGETS MATCHES
"gfx941"
OR
GPU_TARGETS MATCHES
"gfx940"
OR GPU_TARGETS MATCHES
"gfx941"
OR
GPU_TARGETS MATCHES
"gfx942"
OR GPU_TARGETS MATCHES
"gfx950"
)
GPU_TARGETS MATCHES
"gfx942"
)
add_gtest_executable
(
test_gemm test_gemm.cpp
)
add_gtest_executable
(
test_wrapper_gemm test_wrapper_gemm.cpp
)
target_link_libraries
(
test_gemm PRIVATE utility
)
target_link_libraries
(
test_wrapper_gemm PRIVATE utility
)
add_dependencies
(
test_wrapper test_wrapper_gemm
)
endif
()
endif
()
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