Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
scxiao committed Apr 25, 2024
1 parent 7fe8aa0 commit 1f30ac9
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ class PredicatedTileAccessIteratorResidualLast<
/// Construct the Params object given a pitch-linear tensor's layout
CUTLASS_HOST_DEVICE
Params(Layout const& layout)
: params_(layout::PitchLinear(layout.stride(0))){};
: params_(layout::PitchLinear(layout.stride(0))) {};

/// Construct the Params object given a pitch-linear tensor's layout
CUTLASS_HOST_DEVICE
Expand Down Expand Up @@ -735,7 +735,7 @@ class PredicatedTileAccessIteratorResidualLast<
/// Construct the Params object given a pitch-linear tensor's layout
CUTLASS_HOST_DEVICE
Params(Layout const& layout)
: params_(layout::PitchLinear(layout.stride(0))){};
: params_(layout::PitchLinear(layout.stride(0))) {};

/// Construct the Params object given a pitch-linear tensor's layout
CUTLASS_HOST_DEVICE
Expand Down Expand Up @@ -1291,7 +1291,8 @@ class PredicatedTileAccessIteratorResidualLast<
/// Construct the Params object given an AffineRankN<2> tensor's layout
CUTLASS_HOST_DEVICE
Params(Layout const& layout)
: params_(layout::AffineRankN<2>(layout.stride(0), layout.stride(1))){};
: params_(layout::AffineRankN<2>(layout.stride(0), layout.stride(1))) {
};
};

private:
Expand Down Expand Up @@ -1510,7 +1511,8 @@ class PredicatedTileAccessIteratorResidualLast<
/// Construct the Params object given an AffineRankN<2> tensor's layout
CUTLASS_HOST_DEVICE
Params(Layout const& layout)
: params_(layout::AffineRankN<2>(layout.stride(1), layout.stride(0))){};
: params_(layout::AffineRankN<2>(layout.stride(1), layout.stride(0))) {
};
};

private:
Expand Down

0 comments on commit 1f30ac9

Please sign in to comment.