-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tests for checking boundary options in 1D convolution #612
base: develop
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #612 +/- ##
===========================================
+ Coverage 78.76% 79.28% +0.51%
===========================================
Files 117 117
Lines 5030 5030
===========================================
+ Hits 3962 3988 +26
+ Misses 1068 1042 -26 |
I had a look at the error GA are giving. It seems like the compiler uses C++11 mode but standard library doesn't ... It seems more like C++20 is being used for standard library. I wanted to have a look at the CI script for GA, but couldn't find it. My guess off the bat would be that problem lies in the |
@meshtag Could you tell what is the status of this PR? Is this going to be picked up or drop it and close it? |
This pull request intends to add unit tests for verifying boundary manipulation in
1D convolution
. Since these are tests(used for provingcorrectness
of implementation), I have favoured readability/simplicity over performance(for example : All tests written insideconvolve.cpp
do not require a separate image to be created after row convolution. However, doing so greatly simplifies its structure and saves the reader from unnecessary trouble of understanding a complex manipulation).Flag
boundary_option::extend_padded
convolves the image assuming a padding around it. This leads to some unknown values of boundary pixels. For testing rest of the pixels(whose values can be predicted), I have deliberately made unknown values inoriginal_output_image
andexpected_image
equal. I have highlighted this with comments in the code.Tasklist