#include "mat_mul.h" #include #include #define CUDA_CALL(f) \ { \ cudaError_t err = (f); \ if (err != cudaSuccess) { \ fprintf(stderr, "CUDA error at [%s:%d] %d %s\n", __FILE__, __LINE__, \ err, cudaGetErrorString(err)); \ exit(1); \ } \ } #define TS 32 #define WPT 8 #define RTS (TS/WPT) #define MAX_NUM_GPU 4 int num_devices = 4; __global__ void sgemm(float *A, float *B, float *C, int M, int N, int K) { //int i = blockDim.x * blockIdx.x + threadIdx.x; //int j = blockDim.y * blockIdx.y + threadIdx.y; const int row = threadIdx.x; const int col = threadIdx.y; const int globalRow = (blockDim.x * WPT )* blockIdx.x + threadIdx.x; const int globalCol = blockDim.y * blockIdx.y + threadIdx.y; // const int large_M = Mend[num_devices]-Mbegin[0]; __shared__ float Asub[TS][TS], Bsub[TS][TS]; // Initialise the accumulation registers float acc[WPT]; for (int w=0; w=32) printf("That is out!"); //if(col>=32) printf("That is out!"); if(((globalRow + w*RTS) >= M) || (tiledCol >= K)){ Asub[row + w*RTS][col] = 0.0f; } else{ Asub[row + w*RTS][col] = A[(globalRow + w*RTS)*K + tiledCol]; } if(((tiledRow + w*RTS) >= K) || (globalCol >= N)){ Bsub[row + w*RTS][col] = 0.0f; } else{ Bsub[row + w*RTS][col] = B[(tiledRow + w*RTS)*N + globalCol]; } } // Synchronise to make sure the tile is loaded __syncthreads(); // Perform the computation for a single tile for (int k=0; k>>(a_d[i], b_d[i], c_d[i], Mend[i] - Mbegin[i], N, K); } // DO NOT REMOVE; NEEDED FOR TIME MEASURE for (int i = 0; i < num_devices; i++) { CUDA_CALL( cudaDeviceSynchronize() ); } } void mat_mul_init(float *A, float *B, float *C, int _M, int _N, int _K) { M = _M, N = _N, K = _K; CUDA_CALL( cudaGetDeviceCount(&num_devices) ); printf("Using %d devices\n", num_devices); for (int i = 0; i < num_devices; i++) { cudaDeviceProp prop; CUDA_CALL( cudaGetDeviceProperties(&prop, i) ); // Try printing more detailed information here printf("[GPU %d] %s\n", i, prop.name); } if (num_devices <= 0) { printf("No CUDA device found. Aborting\n"); exit(1); } // Setup problem size for each GPU for (int i = 0; i < num_devices; i++) { Mbegin[i] = (M / num_devices) * i; Mend[i] = (M / num_devices) * (i + 1); } Mend[num_devices - 1] = M; // Allocate device memory for each GPU for (int i = 0; i < num_devices; i++) { CUDA_CALL( cudaSetDevice(i) ); CUDA_CALL( cudaMalloc(&a_d[i], (Mend[i] - Mbegin[i]) * K * sizeof(float)) ); CUDA_CALL( cudaMalloc(&b_d[i], K * N * sizeof(float)) ); CUDA_CALL( cudaMalloc(&c_d[i], (Mend[i] - Mbegin[i]) * N * sizeof(float)) ); } // Upload A and B matrix to every GPU for (int i = 0; i < num_devices; i++) { CUDA_CALL( cudaMemcpy(a_d[i], A + Mbegin[i] * K, (Mend[i] - Mbegin[i]) * K * sizeof(float), cudaMemcpyHostToDevice) ); CUDA_CALL( cudaMemcpy(b_d[i], B, K * N * sizeof(float), cudaMemcpyHostToDevice) ); } // DO NOT REMOVE; NEEDED FOR TIME MEASURE for (int i = 0; i < num_devices; i++) { CUDA_CALL( cudaDeviceSynchronize() ); } } void mat_mul_final(float *A, float *B, float *C, int M, int N, int K) { // Do any post-matmul cleanup work here. // Download C matrix from GPUs for (int i = 0; i < num_devices; i++) { CUDA_CALL( cudaMemcpy(C + Mbegin[i] * N, c_d[i], (Mend[i] - Mbegin[i]) * N * sizeof(float), cudaMemcpyDeviceToHost) ); } // DO NOT REMOVE; NEEDED FOR TIME MEASURE for (int i = 0; i < num_devices; i++) { CUDA_CALL( cudaDeviceSynchronize() ); } }