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>;