Skip to content

Commit 8b41d5e

Browse files
author
Timmy
committed
Merge pull request #91 from TimmyLiu/develop
fix a very silly bug in compuing s/dtrsm flops.
2 parents 5137231 + 93b5b69 commit 8b41d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/clfunc_xtrsm.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class xTrsm : public clblasFunc
7575
}
7676
else
7777
{
78-
return 20*buffer_.m_*(buffer_.n_+1)*buffer_.n_/time_in_ns();
78+
return buffer_.m_*(buffer_.n_+1)*buffer_.n_/time_in_ns();
7979
}
8080
}
8181

0 commit comments

Comments
 (0)