Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3241722
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T18:13:55+00:00 2026-05-17T18:13:55+00:00

My input data is 16-bit data, and I need to find a median of

  • 0

My input data is 16-bit data, and I need to find a median of 3 values using SSE2 instruction set.

If I have 3 16-bits input values A, B and C, I thought to do it like this:

D = max( max( A, B ), C )
E = min( min( A, B ), C )
median = A + B + C - D - E

C functions I am planing to use are :

  • max – _mm_max_epi16
  • min – _mm_min_epi16
  • addition – _mm_add_epi16
  • subtract – _mm_sub_epi16

Can anyone suggest a better way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T18:13:55+00:00Added an answer on May 17, 2026 at 6:13 pm

    Your idea is quite clever but you can do it with fewer operations just using max and min.

    t1 = min(A, B)
    t2 = max(A, B)
    t3 = min(t2, C)
    median = max(t1, t3)
    

    This will be just 4 SSE instructions compared with 8 in your original implementation.

    Note that this is actually just a pruned sorting network for N = 3.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Like http://bit.ly/ideYPm , i need change this: function createPickers() { $(document.body).select('input.datepicker').each( function(e) { new
I have a table of data that looks a bit like this: Name StartTime
I have a stream of 16 bit values, and I need to adjust the
We have some input data that sometimes appears with &nbsp characters on the end.
I need to build an application that accepts user input data (such as name,
In my scenario, I have a program that analyzes data input files and produces
I'm dealing with data input in the form of json documents. These documents need
I need to encrypt a string data with SSH-2 RSA 1024 bit ( with
Is it enough to avoid javascript injection validating input data in such way: xssValidate
I'm currently working on a reasonably complicated data input form, based around ASP.NET Web

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.