Unverified Commit 10d8fa9c authored by Lakhinder Walia's avatar Lakhinder Walia Committed by GitHub
Browse files

Remove rocblas_gemm_flags_pack_int8x4 in rocblas v3.0 or higher (#2002) (#2004)

* Remove rocblas_gemm_flags_pack_int8x4 in rocblas v3.0 or higher (#2002)

* Update src/targets/gpu/gemm_impl.cpp
parent 49280e51
......@@ -140,8 +140,11 @@ void gemm_impl(context& ctx,
compute_type = rocblas_datatype_f32_r;
}
rocblas_gemm_flags flag =
int8_x4_format ? rocblas_gemm_flags_pack_int8x4 : rocblas_gemm_flags_none;
rocblas_gemm_flags flag = rocblas_gemm_flags_none;
#if ROCBLAS_VERSION_MAJOR < 3
if(int8_x4_format)
flag = rocblas_gemm_flags_pack_int8x4;
#endif
auto a_lens = args[0].get_shape().lens();
auto b_lens = args[1].get_shape().lens();
......
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