"...composable_kernel-1.git" did not exist on "82c8b9f8eeffc1b9a72dc5a84137ece88e8d5941"
Commit f2b92ba9 authored by Chao Liu's avatar Chao Liu
Browse files

fixed build issue

parent 81497a93
if(DEVICE_BACKEND STREQUAL "HIP") if(DEVICE_BACKEND STREQUAL "HIP")
set(DRIVER_SOURCE driver.hip.cpp) set(DRIVER_SOURCE driver.cpp)
elseif(DEVICE_BACKEND STREQUAL "CUDA") elseif(DEVICE_BACKEND STREQUAL "CUDA")
set(DRIVER_SOURCE driver.cu) set(DRIVER_SOURCE driver.cu)
endif() endif()
......
...@@ -264,16 +264,8 @@ struct GridwiseConvolutionImplicitGemm_v4_nchw_kcyx_nkhw_lds_double_buffer ...@@ -264,16 +264,8 @@ struct GridwiseConvolutionImplicitGemm_v4_nchw_kcyx_nkhw_lds_double_buffer
// LDS double buffer: preload data into LDS // LDS double buffer: preload data into LDS
{ {
Float p_in_register_clipboard[blockwise_in_copy.GetRegisterClipboardSize()]; blockwise_in_copy.Run(p_in_global, p_in_block_double);
Float p_wei_register_clipboard[blockwise_wei_copy.GetRegisterClipboardSize()]; blockwise_wei_copy.Run(p_wei_global, p_wei_block_double);
blockwise_in_copy.RunLoadRegisterClipboard(p_in_global, p_in_register_clipboard);
blockwise_wei_copy.RunLoadRegisterClipboard(p_wei_block_on_global,
p_wei_register_clipboard);
blockwise_in_copy.RunStoreRegisterClipboard(p_in_register_clipboard, p_in_block_double);
blockwise_wei_copy.RunStoreRegisterClipboard(p_wei_register_clipboard,
p_wei_block_double);
} }
// LDS double buffer: main body // LDS double buffer: main body
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment