-
Notifications
You must be signed in to change notification settings - Fork 104
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 move_quantile function #418
base: master
Are you sure you want to change the base?
Commits on Sep 13, 2022
-
Implementation of moving quantile instead of moving median, which is a partial case of quantile. For now using the fixed constant in #define
Configuration menu - View commit details
-
Copy full SHA for 524afbf - Browse repository at this point
Copy the full SHA 524afbfView commit details
Commits on Sep 14, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 4f98aa4 - Browse repository at this point
Copy the full SHA 4f98aa4View commit details
Commits on Sep 15, 2022
-
Configuration menu - View commit details
-
Copy full SHA for e470fa2 - Browse repository at this point
Copy the full SHA e470fa2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c97aac - Browse repository at this point
Copy the full SHA 1c97aacView commit details -
Change all move_median to move_quantile
Add quantile and has_quantile parameters to the template
Configuration menu - View commit details
-
Copy full SHA for 10b8824 - Browse repository at this point
Copy the full SHA 10b8824View commit details -
Configuration menu - View commit details
-
Copy full SHA for c718a18 - Browse repository at this point
Copy the full SHA c718a18View commit details
Commits on Sep 16, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 009c835 - Browse repository at this point
Copy the full SHA 009c835View commit details
Commits on Sep 17, 2022
-
Added all imports Fixed a bug when q=1. Call move_max for this case (on python layer) Added a lot of tests for move_median and move_quantile
Configuration menu - View commit details
-
Copy full SHA for 832035a - Browse repository at this point
Copy the full SHA 832035aView commit details -
Finish extensive testing of move_quantile
Fix keyword argument "method"/"interpolation" for different numpy verisons (keyword was changed after 1.22.0) Copy over doc string for move_quantile from C layer to Python layer
Configuration menu - View commit details
-
Copy full SHA for 7af7168 - Browse repository at this point
Copy the full SHA 7af7168View commit details -
Configuration menu - View commit details
-
Copy full SHA for 42eddad - Browse repository at this point
Copy the full SHA 42eddadView commit details
Commits on Sep 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for c2a2ae3 - Browse repository at this point
Copy the full SHA c2a2ae3View commit details -
Revert "move_quantile(q=0) vs move_min benching"
This reverts commit c2a2ae3. move_min is significanlty faster than move_quantile with q = 0. So in case of q=0 apply move_min instead. Same for q=1 and move_max.
Configuration menu - View commit details
-
Copy full SHA for 9f4c5dc - Browse repository at this point
Copy the full SHA 9f4c5dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9447697 - Browse repository at this point
Copy the full SHA 9447697View commit details -
Configuration menu - View commit details
-
Copy full SHA for de181da - Browse repository at this point
Copy the full SHA de181daView commit details -
Bring old move_median, add move_quantile separately
Instead of move_quantile substituting move_median completely, have both move_median and move_quantile implemented separately.
Configuration menu - View commit details
-
Copy full SHA for 02a0ce1 - Browse repository at this point
Copy the full SHA 02a0ce1View commit details -
Configuration menu - View commit details
-
Copy full SHA for cd49b4f - Browse repository at this point
Copy the full SHA cd49b4fView commit details -
Move move_quantile to C level fully
Remove the wrapper for move_quantile on python level which checked for q = 0 or 1. Now it's fully in C. Also check for q=0.5 as we checked it's 3-4% faster to call move_median
Configuration menu - View commit details
-
Copy full SHA for fcaefde - Browse repository at this point
Copy the full SHA fcaefdeView commit details
Commits on Sep 22, 2022
-
Refactor parse_args function in move_template
Add some more tests
Configuration menu - View commit details
-
Copy full SHA for 1bddedd - Browse repository at this point
Copy the full SHA 1bddeddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a413cb - Browse repository at this point
Copy the full SHA 7a413cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6851ed2 - Browse repository at this point
Copy the full SHA 6851ed2View commit details
Commits on Sep 23, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 97ecd15 - Browse repository at this point
Copy the full SHA 97ecd15View commit details -
Configuration menu - View commit details
-
Copy full SHA for a7d5c22 - Browse repository at this point
Copy the full SHA a7d5c22View commit details -
Refactor parse_args again to actually work
Mostly get rid of macros
Configuration menu - View commit details
-
Copy full SHA for 5a2bcac - Browse repository at this point
Copy the full SHA 5a2bcacView commit details -
Configuration menu - View commit details
-
Copy full SHA for c390863 - Browse repository at this point
Copy the full SHA c390863View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6f1e5d4 - Browse repository at this point
Copy the full SHA 6f1e5d4View commit details
Commits on Sep 26, 2022
-
Change
packaging
module topkg_resources
for versions comparison
Configuration menu - View commit details
-
Copy full SHA for 7f1c3af - Browse repository at this point
Copy the full SHA 7f1c3afView commit details
Commits on Sep 27, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 4dadfe4 - Browse repository at this point
Copy the full SHA 4dadfe4View commit details
Commits on Sep 28, 2022
-
Make mm_handle and mq_handle the same
This eliminate the need for macro in move_median.c mm_handle will just have an unused membet "quanitle" for the case of move_median.
Configuration menu - View commit details
-
Copy full SHA for 9012e24 - Browse repository at this point
Copy the full SHA 9012e24View commit details
Commits on Sep 29, 2022
-
Median and quantile with function pointers
move_median and move_quantile now have all the same functions except for the construction of mm/mq.
Configuration menu - View commit details
-
Copy full SHA for 72677f8 - Browse repository at this point
Copy the full SHA 72677f8View commit details
Commits on Oct 2, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 2c892db - Browse repository at this point
Copy the full SHA 2c892dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 654ab14 - Browse repository at this point
Copy the full SHA 654ab14View commit details
Commits on Jan 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 04ce117 - Browse repository at this point
Copy the full SHA 04ce117View commit details
Commits on Mar 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 00cd119 - Browse repository at this point
Copy the full SHA 00cd119View commit details
Commits on Apr 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 4ec8945 - Browse repository at this point
Copy the full SHA 4ec8945View commit details