Skip to content

Commit

Permalink
Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
huntercbx committed May 16, 2017
1 parent adcaf14 commit 30c5038
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Exercises/08 - CUDA/VS 2015/kernels.cu
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ void filter_kernel(unsigned char * src, unsigned char * dest, unsigned int w, un
extern "C"
void Filter(unsigned char * src, unsigned char * dest, unsigned int w, unsigned int h)
{
// êîä ôèëüòðà
dim3 BlockDim1(BLOCK_DIM_X, BLOCK_DIM_Y, 1);
dim3 GridDim1((w - 1)/BlockDim1.x + 1, (h - 1)/BlockDim1.y + 1, 1);
filter_kernel<<<GridDim1, BlockDim1>>>(src, dest, w, h);
Expand Down

0 comments on commit 30c5038

Please sign in to comment.