Intro to Computing - How Hardware Works
What will be the output of this pseudocode simulating GPU task queue?
queue = ["render", "compute", "display"]
task = queue.pop(0)
print(task)
print(queue)
queue = ["render", "compute", "display"]
task = queue.pop(0)
print(task)
print(queue)
