提交 4cb833d2 编写于 作者: D dongdaxiang

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

test=develop
...@@ -12,41 +12,34 @@ ...@@ -12,41 +12,34 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#include "paddle/fluid/platform/timer.h" #include "paddle/fluid/platform/timer.h"
#include "gtest/gtest.h"
TEST(Timer, Reset) { TEST(Timer, Reset) {
platform::Timer timeline; paddle::platform::Timer timeline;
timeline.Start(); timeline.Start();
sleep(3); sleep(3);
timeline.Pause(); timeline.Pause();
timeline.Reset(); timeline.Reset();
std::cout << paddle::string::Sprintf("after reset %fs", timeline.ElapsedSec())
<< std::endl;
} }
TEST(Timer, Start) { TEST(Timer, Start) {
platform::Timer timeline; paddle::platform::Timer timeline;
timeline.Start(); timeline.Start();
sleep(3); sleep(3);
timeline.Pause(); timeline.Pause();
std::cout << paddle::string::Sprintf("after pause %fs", timeline.ElapsedSec())
<< std::endl;
} }
TEST(Timer, Pause) { TEST(Timer, Pause) {
platform::Timer timeline; paddle::platform::Timer timeline;
timeline.Start(); timeline.Start();
sleep(3); sleep(3);
timeline.Pause(); timeline.Pause();
std::cout << paddle::string::Sprintf("after pause %fus", timeline.ElapsedUS())
<< std::endl;
} }
TEST(Timer, Resume) { TEST(Timer, Resume) {
platform::Timer timeline; paddle::platform::Timer timeline;
timeline.Start(); timeline.Start();
sleep(3); sleep(3);
timeline.Pause(); timeline.Pause();
timeline.Resume(); timeline.Resume();
std::cout << paddle::string::Sprintf("after pause %fms", timeline.ElapsedMS())
<< std::endl;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册