Skip to content

Commit

Permalink
trmm() refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
mkatliar committed Oct 1, 2024
1 parent f6d32ce commit 682b334
Show file tree
Hide file tree
Showing 4 changed files with 226 additions and 127 deletions.
4 changes: 2 additions & 2 deletions bench/blast/math/dense/StaticTrmm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace blast :: benchmark

for (auto _ : state)
{
trmmLeftUpper(1., A, B, C);
trmm(1., A, UpLo::Upper, false, B, C);
DoNotOptimize(A);
DoNotOptimize(B);
DoNotOptimize(C);
Expand All @@ -48,7 +48,7 @@ namespace blast :: benchmark

for (auto _ : state)
{
trmmRightLower(1., B, A, C);
trmm(1., B, A, UpLo::Lower, false, C);
DoNotOptimize(A);
DoNotOptimize(B);
DoNotOptimize(C);
Expand Down
Loading

0 comments on commit 682b334

Please sign in to comment.