Joseph Redmon
2015-09-05 b5936b499abc94c0efffbcc99b5698574b59d860
src/crop_layer_kernels.cu
@@ -5,8 +5,6 @@
#include "image.h"
}
#define BLOCK 256
__device__ float get_pixel_kernel(float *image, int w, int h, int x, int y, int c)
{
    if(x < 0 || x >= w || y < 0 || y >= h) return 0;