Skip to content

Commit

Permalink
fix loop which has remove unnecessary assignments
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmetyusufoglu authored and psychocoderHPC committed Jun 20, 2024
1 parent ed0a95f commit 46d395a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/convolution2D/src/convolution2D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ struct ConvolutionKernel2DSharedMemory
}
}
}
output[row * matrixWidth + col] = pValue;
}
output[row * matrixWidth + col] = pValue;
} // if
}
};
Expand Down

0 comments on commit 46d395a

Please sign in to comment.