Lines Matching refs:queues
630 * To override the number queues:
631 * * "gc" is for graphics queues with compute support
632 * * "g" is for graphics queues with no compute support
633 * * "c" is for compute queues with no graphics support
636 * advertised queues to be 2 queues with graphics+compute support, and 1 queue
639 * ANV_QUEUE_OVERRIDE=c=1 would override the number of advertised queues to
641 * number of graphics+compute queues.
643 * ANV_QUEUE_OVERRIDE=gc=0,c=1 would override the number of advertised queues
645 * number of graphics+compute queues to be 0.
2926 /* Check requested queues and fail if we are requested to create any
2927 * queues with flags we don't support.
3031 device->queues =
3032 vk_zalloc(&device->vk.alloc, num_queues * sizeof(*device->queues), 8,
3034 if (device->queues == NULL) {
3052 result = anv_queue_init(device, &device->queues[device->queue_count],
3304 anv_queue_finish(&device->queues[i]);
3305 vk_free(&device->vk.alloc, device->queues);
3379 anv_queue_finish(&device->queues[i]);
3380 vk_free(&device->vk.alloc, device->queues);
3414 struct anv_queue *queue = &device->queues[i];