Home | History | Annotate | Download | only in scheduler

Lines Matching refs:entities

29  * The GPU scheduler provides entities which allow userspace to push jobs
31 * The software queues have a priority among them. The scheduler selects the entities
42 * 3. Each scheduler run queue has a queue of entities to schedule
43 * 4. Entities themselves maintain a queue of jobs that will be scheduled on
81 INIT_LIST_HEAD(&rq->entities);
101 list_add_tail(&entity->list, &rq->entities);
142 list_for_each_entry_continue(entity, &rq->entities, list) {
152 list_for_each_entry(entity, &rq->entities, list) {
364 list_for_each_entry_safe(entity, tmp, &rq->entities, list) {
375 if (&entity->list != &rq->entities)