Skip to content
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

implement Statistics.median #973

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

stev47
Copy link
Contributor

@stev47 stev47 commented Nov 29, 2021

This implements Statistics.median based on the existing bitonic
sorting, avoiding unnecessary allocation.
While it is generally suboptimal to sort the whole array, the compiler
manages to skip some branches since only the middle element(s) are used.
Thus median is generally faster than sort.

Using a dedicated median selection network could yield better
performance and might be considered for future improvement.

@RoyiAvital
Copy link

Any chance to push this forward?

This implements `Statistics.median` based on the existing bitonic
sorting, avoiding unnecessary allocation.
While it is generally suboptimal to sort the whole array, the compiler
manages to skip some branches since only the middle element(s) are used.
Thus `median` is generally faster than `sort`.

Using a dedicated median selection network could yield better
performance and might be considered for future improvement.
@stev47
Copy link
Contributor Author

stev47 commented Oct 29, 2024

Any chance to push this forward?

updated the MR, waiting for review

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants