Skip to content
Snippets Groups Projects
Commit 4e741d69 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #6760: Gave GPU comm thread RT priority

parent 45b8a3aa
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,7 @@
#include <ApplCommon/PosixTime.h>
#include <Common/LofarLogger.h>
#include <Common/Thread/Thread.h>
#include <iomanip>
......@@ -223,7 +224,13 @@ namespace LOFAR
processCPUTimer.stop();
// Synchronise to assure that all the work in the data is done
queue.synchronize();
{
// If we delay the reception of the DONE signal from the GPU,
// we can't schedule the next batch of work in time.
Thread::ScopedPriority sp(SCHED_RR, 10);
queue.synchronize();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment