-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
running out of budget unexpectedly #66
Comments
But I noticed that your target-runner was reporting a large time even when given a time bound. irace will now check that the bound is respected and be more strict about it. Your target-runner should do: #!/bin/sh -e
echo "1729.0 $5" Let me know if it doesn't work! Thanks! |
Thanks for the explanation! my target runner actually returns I’ll change my code to remove this +1. |
hi @MLopez-Ibanez, we have a question related to your comment:
I suppose |
That is a good question. Actually irace has always applied PAR if Lines 470 to 476 in 23d36b0
Is there a reason to change this? What are other tuners doing? If the target-runner can return a status like 'SOLVED' or 'TIMEOUT', how do they handle a situation when the target-runner return 'SOLVED' but the runtime was 10 times the bound given? Note that the condition for giving an error that I have just implemented is |
hi Manuel, Ah I see, the condition Regarding your first point: "Is there a reason to change this?" The current "What are other tuners doing? If the target-runner can return a status like 'SOLVED' or 'TIMEOUT', how do they handle a situation when the target-runner return 'SOLVED' but the runtime was 10 times the bound given?" That is a very good point, and honestly I don't know the answer (I tried to look at SMAC3's source code but didn't see that case being handled. If the target-runner returns a runtime value, the tuner will just take it as it is). |
What happened
irace thought it ran out of time budget when there was clearly a lot left. I set
--max-time 172800
but after irace called target runner 10 times and used17290
time, it said it only had90
time left and stopped. An excerpt of the text log is provided below.What did I expect to happen
I expected it to keep using the budget it has for more experiments.
Steps to reproduce
Run
run.sh
in my repo here https://github.com/DE0CH/irace-bug2.The text was updated successfully, but these errors were encountered: