Skip to content

Commit

Permalink
Fix some style issues and comments issues
Browse files Browse the repository at this point in the history
  • Loading branch information
neil-lindquist committed Dec 1, 2023
1 parent f7d0097 commit abaf8c7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/hemmA.cc
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ void hemmA(
alpha, A.sub(k+1, A.mt()-1, k, k),
B.sub(k, k, 0, B.nt()-1),
one, C.sub(k+1, C.mt()-1, 0, C.nt()-1),
layout, priority_0, queue_0, opts2 );
layout, priority_0, queue_0, opts2 );
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/tbsmPivots.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ void tbsm(
// Options
int64_t lookahead = get_option<int64_t>( opts, Option::Lookahead, 1 );

// Use only TileReleaseStrategy::Slate for gemm.
// Internal gemm routine called here won't release
// Use only TileReleaseStrategy::Slate for tbsmPivots.
// Internal tbsmPivots routine called here won't release
// any tiles. This routine will clean up tiles.
Options opts2 = opts;
opts2[ Option::TileReleaseStrategy ] = TileReleaseStrategy::Slate;
Expand Down
4 changes: 2 additions & 2 deletions src/work/work_trmm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ void trmm(Side side, scalar_t alpha, TriangularMatrix<scalar_t> A,
// Assumes column major
const Layout layout = Layout::ColMajor;

// Use only TileReleaseStrategy::Slate for trsm.
// Internal routines (trsm and gemm) called here won't release
// Use only TileReleaseStrategy::Slate for trmm.
// Internal routines (trmm and gemm) called here won't release
// any tiles. Trsm will clean up tiles.
Options opts2 = {{Option::TileReleaseStrategy, TileReleaseStrategy::Slate}};

Expand Down

0 comments on commit abaf8c7

Please sign in to comment.