Established by Berry Gordy and is one of the most important…

Established by Berry Gordy and is one of the most important independent labels in history. It quickly built one of the most impressive rosters of artists in American popular music, and by 1964, had become the most successful independent record company and black owned business in the United States.

[Openbook question]  #define N 10000 __global__ void vectorA…

[Openbook question]  #define N 10000 __global__ void vectorAdd(float *a, float *b, float *c) {     int idx = blockIdx.x * blockDim.x + threadIdx.x;     if (idx < N/10)         c[idx*10] = a[idx*10] + b[idx*10]; } How can we improve the Floating-point operations per byte for the above code? There are 4 CUDA blocks, and each CUDA block has 10 threads.   choose all