提交 68a2d1f3 编写于 作者: D dongdaxiang

Merge branch 'add_timer' of https://github.com/guru4elephant/Paddle into add_timer

add timer_test
test=develop
...@@ -13,22 +13,40 @@ ...@@ -13,22 +13,40 @@
// limitations under the License. // limitations under the License.
#include "paddle/fluid/platform/timer.h" #include "paddle/fluid/platform/timer.h"
TEST(TimerUsage, Print) { TEST(Timer, Reset) {
platform::Timer timeline; platform::Timer timeline;
timeline.Start(); timeline.Start();
sleep(3); sleep(3);
timeline.Pause(); timeline.Pause();
std::cout << paddle::string::Sprintf("passed time %f", timeline.ElapsedSec())
<< std::endl;
timeline.Reset(); timeline.Reset();
std::cout << paddle::string::Sprintf("after reset %fs", timeline.ElapsedSec()) std::cout << paddle::string::Sprintf("after reset %fs", timeline.ElapsedSec())
<< std::endl; << std::endl;
}
std::cout << paddle::string::Sprintf("after reset %fus", timeline.ElapsedUS()) TEST(Timer, Start) {
platform::Timer timeline;
timeline.Start();
sleep(3);
timeline.Pause();
std::cout << paddle::string::Sprintf("after pause %fs", timeline.ElapsedSec())
<< std::endl; << std::endl;
}
std::cout << paddle::string::Sprintf("after reset %fms", timeline.ElapsedMS()) TEST(Timer, Pause) {
platform::Timer timeline;
timeline.Start();
sleep(3);
timeline.Pause();
std::cout << paddle::string::Sprintf("after pause %fus", timeline.ElapsedUS())
<< std::endl; << std::endl;
std::cout << paddle::string::Sprintf("count is %d", timeline.Count()) }
TEST(Timer, Resume) {
platform::Timer timeline;
timeline.Start();
sleep(3);
timeline.Pause();
timeline.Resume();
std::cout << paddle::string::Sprintf("after pause %fms", timeline.ElapsedMS())
<< std::endl; << std::endl;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册