Skip to content
Snippets Groups Projects
Commit abf11824 authored by Benedikt Hegner's avatar Benedikt Hegner
Browse files

Fixed uninitialized variable in the Gaudi Forward Scheduler, leading to random dead lock

See merge request !244
parents ead2d097 5f96410b
No related branches found
No related tags found
Loading
Pipeline #
......@@ -198,7 +198,7 @@ private:
unsigned int m_algosInFlight = 0;
/// Number of algoritms presently in flight
unsigned int m_IOBoundAlgosInFlight;
unsigned int m_IOBoundAlgosInFlight = 0;
/// Loop on algorithm in the slots and promote them to successive states (-1 means all slots, while empty string
/// means skipping an update of the Control Flow state)
......
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