"...composable_kernel_rocm.git" did not exist on "34612efddf6e61bdbec14321dbdd692f7b922eaf"
Commit f7101413 authored by Muhammed Emin Ozturk's avatar Muhammed Emin Ozturk
Browse files

only build for gfx94

parent 2a12493d
...@@ -92,6 +92,13 @@ function(add_instance_library INSTANCE_NAME) ...@@ -92,6 +92,13 @@ function(add_instance_library INSTANCE_NAME)
message("removing gemm_universal_streamk_f8 instance ${source} ") message("removing gemm_universal_streamk_f8 instance ${source} ")
list(REMOVE_ITEM ARGN "${source}") list(REMOVE_ITEM ARGN "${source}")
endif() endif()
# Do not build gemm_universal_streamk_bf16 for any targets except gfx94 #Emin (atomicAdd Issue)
endforeach()
foreach(source IN LISTS ARGN)
if(NOT INST_TARGETS MATCHES "gfx94" AND source MATCHES "gemm_xdl_universal_streamk" AND source MATCHES "_bf16_")
message("removing gemm_universal_streamk_bf16 instance ${source} ")
list(REMOVE_ITEM ARGN "${source}")
endif()
endforeach() endforeach()
endif() endif()
#only continue if there are some source files left on the list #only continue if there are some source files left on the list
......
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