Skip to content

Commit

Permalink
Remove check to see if hipblaslt is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsan-ca committed Dec 4, 2024
1 parent 72d089c commit 0545f24
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/targets/gpu/fuse_ops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -972,12 +972,10 @@ void fuse_ops::apply(module& m) const
run_passes(m, {dead_code_elimination{}});
#endif
#if MIGRAPHX_USE_ROCBLAS
if(not enabled(MIGRAPHX_ENABLE_HIPBLASLT_GEMM{}) or not hipblaslt_supported())
match::find_matches(m, find_rocblas_gemm_pointwise{});
match::find_matches(m, find_rocblas_gemm_pointwise{});
#endif
#if MIGRAPHX_USE_HIPBLASLT
if(enabled(MIGRAPHX_ENABLE_HIPBLASLT_GEMM{}) and hipblaslt_supported())
match::find_matches(m, find_hipblas_gemm_pointwise{});
match::find_matches(m, find_hipblas_gemm_pointwise{});
#endif
match::find_matches(m,
find_layernorm_pointwise{},
Expand Down

0 comments on commit 0545f24

Please sign in to comment.