- scheduler: skip deadline check for non-CPU-intensive projects

svn path=/trunk/boinc/; revision=19273
This commit is contained in:
David Anderson 2009-10-06 20:45:09 +00:00
parent 39f66e6abd
commit 0e38392885
2 changed files with 10 additions and 0 deletions

View File

@ -8454,3 +8454,9 @@ David 6 Oct 2009
add_venue.cpp
forum_thread.cpp
prefs_edit.cpp
David 6 Oct 2009
- scheduler: skip deadline check for non-CPU-intensive projects
sched/
sched_send.cpp

View File

@ -745,6 +745,10 @@ int wu_is_infeasible_fast(
retval = check_bandwidth(wu);
if (retval) return retval;
if (config.non_cpu_intensive) {
return 0;
}
// do deadline check last because EDF sim uses some CPU
//
double opt, pess;