Skip to content

Instantly share code, notes, and snippets.

View mohitreddy1996's full-sized avatar
🎯
Focusing

Mohit Reddy mohitreddy1996

🎯
Focusing
View GitHub Profile
@wh5a
wh5a / mp3.c
Created December 16, 2012 22:30
CUDA Matrix Multiplication with Shared Memory
// MP 2: Due Sunday, Dec 16, 2012 at 11:59 p.m. PST
#include <wb.h>
#define wbCheck(stmt) do { \
cudaError_t err = stmt; \
if (err != cudaSuccess) { \
wbLog(ERROR, "Failed to run stmt ", #stmt); \
return -1; \
} \
} while(0)