Skip to content

Commit 93b5b69

Browse files
author
Timmy
committed
fix a very silly bug in compuing s/dtrsm flops.
1 parent a280c96 commit 93b5b69

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)