Commit 7af0e314 authored by Jianfeng yan's avatar Jianfeng yan
Browse files

minor changes

parent c521ee62
......@@ -626,19 +626,6 @@ struct DeviceGemmXdlSplitKCShuffle
block_2_ctile_map_ = MakeBlock2CTileMap(BatchCount_, c_grid_desc_m_n_, 1, 1);
}
for(int batch=0; batch<BatchCount_; ++batch)
{
printf("batch = %d, ptr_offset = [%ld, %ld, %ld]\n", batch, compute_ptr_offset_of_batch_.GetAPtrOffset(batch), compute_ptr_offset_of_batch_.GetBPtrOffset(batch), compute_ptr_offset_of_batch_.GetCPtrOffset(batch));
}
const index_t grid_size =
GridwiseGemm::CalculateGridSize(c_grid_desc_m_n_) * BatchCount_;
for (int blk=0; blk<grid_size; ++blk)
{
const auto ctile_idx = block_2_ctile_map_.CalculateBottomIndex(make_multi_index(blk));
printf("blk= %d, ctile_idx = [%d, %d]\n", blk, ctile_idx[I0], ctile_idx[I1]);
}
}
// private:
......
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