Issue532

Title combine Timer and ExactTimer
Priority feature Status resolved
Superseder Nosy List erez, jendrik, malte, mkatz
Assigned To jendrik Keywords
Optional summary

Created on 2015-05-19.16:31:23 by jendrik, last changed by jendrik.

Messages
msg4646 (view) Author: jendrik Date: 2015-10-05.15:59:42
Merged and pushed.
msg4642 (view) Author: malte Date: 2015-10-02.17:57:13
Yes, please! I looked at the patch and also like the fact that it fixes the
spelling of "God". :-)
msg4641 (view) Author: jendrik Date: 2015-10-02.17:54:06
The test worked on our Windows machine. Can I merge this?
msg4599 (view) Author: jendrik Date: 2015-09-16.11:03:45
Michael ran the test on his OS X machine and hill-climbing is correctly stopped 
after 2 seconds (thanks Michael). 

I will run the test on our Windows machine tomorrow.
msg4598 (view) Author: jendrik Date: 2015-09-15.22:59:10
Maybe Michael can help us out? Could you give me your bitbucket username (so I can give you access), clone 
the repository linked below and run the following command, please?

./fast-downward.py ../benchmarks/sokoban-opt11-strips/p10.pddl --search "astar(ipdb(max_time=2))"

Hill-climbing should abort after 2 seconds (for me on Linux the log says "iPDB: hill climbing time: 2.02s").
msg4597 (view) Author: malte Date: 2015-09-15.17:29:17
Off the tracker, Erez said he didn't have access to a Mac. I think we're using
an OS-specific API here, so I think we need a test on OS X. Any ideas whom to ask?
msg4596 (view) Author: malte Date: 2015-09-15.17:14:09
Erez, could you run Jendrik's test on OS X?
msg4595 (view) Author: jendrik Date: 2015-09-15.17:02:07
I think we have done neither functionality tests nor runtime tests on these 
platforms. I could do a small functionality test on Windows, would that be 
sufficient?
msg4594 (view) Author: malte Date: 2015-09-15.16:37:52
Have we ever tested ExactTimer on Windows and Mac OS?
msg4593 (view) Author: jendrik Date: 2015-09-15.16:01:33
Currently, the CountdownTimer uses the inaccurate Timer class. Since I need to use 
the CountdownTimer for exact measurements, I'd like to move this issue forward.

I have written a microbenchmark which showed that using clock_gettime() is faster 
than times():

Running times() 10000000 times: 1.54408 seconds
Running clock_gettime() 10000000 times: 1.46931 seconds

I have also prepared a pull request, which lets ExactTimer return its result in 
seconds rather than nanoseconds and renames ExactTimer to Timer:

https://bitbucket.org/jendrikseipp/downward/pull-requests/34

What do you think, Malte?
msg4213 (view) Author: erez Date: 2015-05-19.16:57:51
One caveat is the dependcy on librt, 
although I don't think that's a real 
issue.
msg4212 (view) Author: jendrik Date: 2015-05-19.16:31:23
We believe that ExactTimer only has advantages over Timer (higher precision while 
being similarly cheap to compute). This needs to be tested and if it is the case, 
the ExactTimer class should be used instead of the Timer class and should be 
renamed to Timer.
History
Date User Action Args
2015-10-05 15:59:42jendriksetstatus: reviewing -> resolved
messages: + msg4646
2015-10-02 17:57:13maltesetmessages: + msg4642
2015-10-02 17:54:06jendriksetmessages: + msg4641
2015-09-16 11:03:45jendriksetmessages: + msg4599
2015-09-15 22:59:11jendriksetnosy: + mkatz
messages: + msg4598
2015-09-15 17:29:17maltesetmessages: + msg4597
2015-09-15 17:14:09maltesetmessages: + msg4596
2015-09-15 17:02:07jendriksetmessages: + msg4595
2015-09-15 16:37:52maltesetmessages: + msg4594
2015-09-15 16:01:33jendriksetstatus: chatting -> reviewing
assignedto: jendrik
messages: + msg4593
2015-05-19 16:57:51erezsetstatus: unread -> chatting
nosy: + erez
messages: + msg4213
2015-05-19 16:31:23jendrikcreate