disable print for group conv multiple D (#421)

[ROCm/composable_kernel commit: 43c898f6ff]
This commit is contained in:
Chao Liu
2022-09-16 09:46:32 -05:00
committed by GitHub
parent 9d42129ff3
commit c1cfd4c894
2 changed files with 6 additions and 3 deletions

View File

@@ -10,4 +10,5 @@ struct StreamConfig
{
hipStream_t stream_id_ = nullptr;
bool time_kernel_ = false;
int log_level_ = 0;
};

View File

@@ -606,9 +606,11 @@ struct DeviceGroupedConvFwdMultipleD_Xdl_CShuffle
float Run(const Argument& arg, const StreamConfig& stream_config = StreamConfig{})
{
#if 1
arg.Print();
#endif
if(stream_config.log_level_ > 0)
{
arg.Print();
}
if(!GridwiseGemm::CheckValidity(arg.a_grid_desc_m_k_,
arg.b_grid_desc_n_k_,
arg.ds_grid_desc_m_n_,