Choir
Task Orchestration Framework
Orchestration: the planning or coordination of the elements of a situation to produce a desired effect, especially surreptitiously
Why?
give: control flow (at macro level)
get: free scaling (both perf and complexity)
Intro
Requirements:
have resources that can be used on queues A and B, but not simultaneously
initialized on A, then read in B (requires ownership transfer)
reset in A (doesn't require transfer)
resource is initialized in A, but then used in B and C
There are resources that are "shareable" between all queues (VK_SHARING_MODE_CONCURRENT),
and ones that need to be transferred (VK_SHARING_MODE_EXCLUSIVE).