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
9fa379ea
Unverified
Commit
9fa379ea
authored
Mar 12, 2024
by
Illia Silin
Committed by
GitHub
Mar 12, 2024
Browse files
Merge pull request #47 from ROCm/navi4x_wmma
Navi4x wmma GEMM
parents
9de63596
9a9cb884
Changes
22
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
include/ck/utility/synchronization.hpp
include/ck/utility/synchronization.hpp
+8
-0
profiler/src/CMakeLists.txt
profiler/src/CMakeLists.txt
+0
-2
No files found.
include/ck/utility/synchronization.hpp
View file @
9fa379ea
...
...
@@ -10,10 +10,18 @@ namespace ck {
__device__
void
block_sync_lds
()
{
#if CK_EXPERIMENTAL_BLOCK_SYNC_LDS_WITHOUT_SYNC_VMEM
#ifdef __gfx12__
asm
volatile
(
"\
s_wait_dscnt 0x0
\n
\
s_barrier_signal -1
\n
\
s_barrier_wait -1 \
"
::
);
#else
asm
volatile
(
"\
s_waitcnt lgkmcnt(0)
\n
\
s_barrier \
"
::
);
#endif
#else
__syncthreads
();
#endif
...
...
profiler/src/CMakeLists.txt
View file @
9fa379ea
...
...
@@ -108,8 +108,6 @@ if(DTYPES MATCHES "fp32" OR DTYPES MATCHES "fp64" OR NOT DEFINED DTYPES)
target_link_libraries
(
${
PROFILER_EXECUTABLE
}
PRIVATE device_contraction_scale_instance
)
endif
()
if
(
DL_KERNELS
)
target_link_libraries
(
${
PROFILER_EXECUTABLE
}
PRIVATE device_batched_gemm_multi_d_instance
)
endif
()
...
...
Prev
1
2
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