Skip to content

Instantly share code, notes, and snippets.

View jishanshaikh4's full-sized avatar
🌿

Jishan Shaikh jishanshaikh4

🌿
View GitHub Profile
![](https://camo.githubusercontent.com/f550284bb57a285832dc8d5b2bbb3d8fa6fc1b1f/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f76464b716e43644c504e4f4b632f67697068792e676966)
@jatesy
jatesy / Array_reduction
Created April 1, 2014 18:25
Graphic Processing Units(GPU) programming: Array reduction algorithm implemented parallel in Cuda, taking branch divergence into account and using shared memory.
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include <cuda.h>
// Thread block size
#define BLOCK_SIZE 512
// Size of Array
@nikcub
nikcub / README.md
Created October 4, 2012 13:06
Facebook PHP Source Code from August 2007