disable tensor contraction f64 on MI100 (#602)

This commit is contained in:
zjing14
2023-02-23 18:59:37 -06:00
committed by GitHub
parent 246ceee49e
commit 209baee299
2 changed files with 7 additions and 2 deletions

View File

@@ -586,6 +586,11 @@ struct DeviceContractionMultipleD_Xdl_CShuffle
return false;
}
if(ck::get_device_name() != "gfx90a" && std::is_same<ADataType, double>::value)
{
return false;
}
if(!GridwiseGemm::CheckValidity(arg.a_grid_desc_m_k_,
arg.b_grid_desc_n_k_,
arg.ds_grid_desc_m_n_,