From b3f3c7758cf83a1f1df9d524a2202f72c518a9e1 Mon Sep 17 00:00:00 2001 From: Haisheng Chen <60504847+Lulullama405@users.noreply.github.com> Date: Thu, 10 Apr 2025 11:49:58 -0700 Subject: [PATCH] Update tile_iterator.cu (#2204) Some typos in comments --- examples/04_tile_iterator/tile_iterator.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/04_tile_iterator/tile_iterator.cu b/examples/04_tile_iterator/tile_iterator.cu index fdfaaac9b..c963d95e7 100644 --- a/examples/04_tile_iterator/tile_iterator.cu +++ b/examples/04_tile_iterator/tile_iterator.cu @@ -124,7 +124,7 @@ __global__ void copy( cudaError_t TestTileIterator(int M, int K) { - // For this example, we chose a <64, 4> tile shape. The PredicateTileIterator expects + // For this example, we chose a <64, 4> tile shape. The PredicatedTileIterator expects // PitchLinearShape and PitchLinear layout. using Shape = cutlass::layout::PitchLinearShape<64, 4>; using Layout = cutlass::layout::PitchLinear; @@ -136,7 +136,7 @@ cudaError_t TestTileIterator(int M, int K) { // dimension then along the strided dimension. using ThreadMap = cutlass::transform::PitchLinearStripminedThreadMap; - // Define the PredicateTileIterator, using TileShape, Element, Layout, and ThreadMap types + // Define the PredicatedTileIterator, using TileShape, Element, Layout, and ThreadMap types using Iterator = cutlass::transform::threadblock::PredicatedTileIterator< Shape, Element, Layout, 1, ThreadMap>;