Last active
September 29, 2021 15:50
-
-
Save AxoyTO/f52e57eaffd3a3fe54e437d10cd4c786 to your computer and use it in GitHub Desktop.
CUDA Check threadDivergency (TASK_03)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <cuda.h> | |
| #include <cuda_runtime.h> | |
| #include <device_launch_parameters.h> | |
| #include <cstdlib> | |
| #include <iostream> | |
| __global__ void DivergencyKernel(float* a, int N) { | |
| int x = blockDim.x * blockIdx.x + threadIdx.x; | |
| if (x % 2 == 0) { | |
| a[x] = a[x] * (threadIdx.x + 1); | |
| } else { | |
| a[x] = a[x] * (threadIdx.x % 5); | |
| } | |
| } | |
| __global__ void NoDivergencyKernel(float* a, int N) { | |
| int x = blockDim.x * blockIdx.x + threadIdx.x; | |
| if (x < N) { | |
| a[x] = 5; | |
| } | |
| } | |
| int main(int argc, char** argv) { | |
| if (argc == 2) { | |
| int N = atoi(argv[1]); | |
| size_t size = N * sizeof(float); | |
| cudaEvent_t start, stop; | |
| cudaEventCreate(&start); | |
| cudaEventCreate(&stop); | |
| float* h_A = (float*)malloc(size); | |
| if (h_A == NULL) { | |
| std::cerr << "Failed malloc for h_A!\n"; | |
| return 1; | |
| } | |
| for (int i = 0; i < N; i++) { | |
| h_A[i] = i + 1; | |
| } | |
| float* d_A = NULL; | |
| cudaMalloc((void**)&d_A, size); | |
| cudaMemcpy(d_A, h_A, size, cudaMemcpyHostToDevice); | |
| const int BLOCK_SIZE = 1024; | |
| const int GRID_SIZE = (N - 1) / BLOCK_SIZE + 1; | |
| cudaEventRecord(start); | |
| NoDivergencyKernel<<<GRID_SIZE, BLOCK_SIZE>>>(d_A, N); | |
| cudaDeviceSynchronize(); | |
| cudaEventRecord(stop); | |
| cudaEventSynchronize(stop); | |
| float msecs = 0; | |
| cudaEventElapsedTime(&msecs, start, stop); | |
| std::cout << "(Divergency) Kernel Time: " << msecs << " ms.\n"; | |
| cudaEventDestroy(start); | |
| cudaEventDestroy(stop); | |
| cudaEventCreate(&start); | |
| cudaEventCreate(&stop); | |
| cudaEventRecord(start); | |
| DivergencyKernel<<<GRID_SIZE, BLOCK_SIZE>>>(d_A, N); | |
| cudaDeviceSynchronize(); | |
| cudaEventRecord(stop); | |
| cudaEventSynchronize(stop); | |
| cudaEventElapsedTime(&msecs, start, stop); | |
| std::cout << "(Non-Divergency) Kernel Time: " << msecs << " ms.\n"; | |
| cudaFree(d_A); | |
| free(h_A); | |
| } | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

