From 0545f24a4afab9a07b321f560b1a7c75158bb9a8 Mon Sep 17 00:00:00 2001 From: Ahsan Saghir Date: Wed, 4 Dec 2024 16:35:43 -0600 Subject: [PATCH] Remove check to see if hipblaslt is enabled --- src/targets/gpu/fuse_ops.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/targets/gpu/fuse_ops.cpp b/src/targets/gpu/fuse_ops.cpp index f088920d4b4..6b37a1cdb75 100644 --- a/src/targets/gpu/fuse_ops.cpp +++ b/src/targets/gpu/fuse_ops.cpp @@ -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{},