1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Ray is a lock-free software.
scheduling/VirtualProcessor is a virtual processor, see VirtualProcessor.txt
scheduling/TaskCreator.h is an interface to create task creators for the virtual processor
scheduling/Worker is an interface to define workers
workers communicate with the virtual communicator and not directly the outbox and inbox
# Purging dead edges
class EdgePurger : public TaskCreator
class EdgePurgerWorker : public Worker
# Merging similar paths
class FusionTaskCreator: public TaskCreator
class FusionWorker: public Worker
|