CUDA_TASKS: Simulate the assignment of N tasks to the blocks and threads of a GPU using CUDA. Number of tasks is 37 BLOCKS: { 2, 1, 1 } THREADS: { 5, 1, 1 } Total threads = 10 Process Process (bx,by,bz) (tx,ty,tz) Tasks... Increment Formula 0 0: ( 0, 0, 0) ( 0, 0, 0) 0 10 20 30 1 1: ( 0, 0, 0) ( 1, 0, 0) 1 11 21 31 2 2: ( 0, 0, 0) ( 2, 0, 0) 2 12 22 32 3 3: ( 0, 0, 0) ( 3, 0, 0) 3 13 23 33 4 4: ( 0, 0, 0) ( 4, 0, 0) 4 14 24 34 5 5: ( 1, 0, 0) ( 0, 0, 0) 5 15 25 35 6 6: ( 1, 0, 0) ( 1, 0, 0) 6 16 26 36 7 7: ( 1, 0, 0) ( 2, 0, 0) 7 17 27 8 8: ( 1, 0, 0) ( 3, 0, 0) 8 18 28 9 9: ( 1, 0, 0) ( 4, 0, 0) 9 19 29