Parallel Processing Quiz 2 assesses knowledge on CUDA programming for parallel processing tasks. It covers shared memory usage, DRAM bursts, thread indexing, and kernel execution, focusing on optimizing data handling and computation in a GPU environment.
64 threads per block
128 threads per block
512 threads per block
1,024 threads per block
Rate this question:
1
1000
512
512000
Rate this question:
I=blockIdx.x*blockDim.x + threadIdx.x +2;
I=blockIdx.x*threadIdx.x*2
I= (blockIdx.x*blockDim.x + threadIdx.x)*2
I=blockIdx.x*blockDim.x*2 + threadIdx.x
Rate this question:
Warp whose next instruction has its operands ready for consumption is eligible for execution.
All threads in a warp execute the same instruction when selected.
Both are correct
None
Rate this question:
37*16
38*50
38*8*50
38*50*2
Rate this question:
0
1
16
32
Rate this question:
Register, thread and thread
Global, grid and application
Shared, grid and application
Constant, grid and application
Rate this question:
M[Row*Width+k] and N[k*Width+Col] are coalesced but P[Row*Width+Col] is not
M[Row*Width+k], N[k*Width+Col] and P[Row*Width+Col] are all coalesced
M[Row*Width+k] is not coalesced but N[k*Width+Col] and P[Row*Width+Col] both are
M[Row*Width+k] is coalesced but N[k*Width+Col] andt P[Row*Width+Col] are not
Rate this question:
0
1
16
32
Rate this question:
Quiz Review Timeline (Updated): Mar 22, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.