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

  • Home
  • SEARCH
  • 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 3485826
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T10:57:16+00:00 2026-05-18T10:57:16+00:00

Does anyone know good way to profile a sorting algorithm in java(sequential and fork

  • 0

Does anyone know good way to profile a sorting algorithm in java(sequential and fork join) ?
because the running time is too short (sorting list size 5000..), System.nanoTime() seems not work properly.

I plan to run same test case many times (1000) and get rid of first 100 results (avoid HotSpot compiler problem) and do an average of running time using System.nanoTime().
Any suggestion on this ?

Thanks a lot!

Can I do this way ?

double count = 0;
double start, end;
for(int r = 0; r < warmup; r++) {
    // do test
}
for(int t = 0; t < runs; t++){
    start = System.nanoTime();
    // do test
    end = System.nanoTime();
    count += start - end;
}
double avg = count/avg
  • 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-18T10:57:17+00:00Added an answer on May 18, 2026 at 10:57 am

    I can assure you that nanoTime() does work and if you want to avoid all hotspot warmup you need to run it 10K times. You should find that a sort of 5K element is fairly quick and even 1K test is not very much. You need to write a test which produces reproduce-able results. If you haven’t, that is down to you to fix the test because it not very good.

    I suggest you try it and see what results you get.

    On an old computer, a sort of 5K random int values takes about 500 us. Note: sorting a sorted array will not give you same result. (so you cannot sort the same array each time)

    A simple way to run a test a certain number of times ignoring the first N runs is to do.

    long start = 0;
    for(int r = -warmup; r < runs; r++) {
        if (r == 0) start = System.nanoTime();
        // do test
    }
    long avg = (System.nanoTime() - start)/runs;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My java program writes information on PDF form. Does anyone know a good way
Does anyone know a good safe way to redirect the output of a printf-style
Does anyone know of a good way to calculate the semantic distance between two
Does anyone know of any software or a good way for developers to build
Does anyone know a good Java lib that will hook into SVN so I
Does anyone know a good way to serialize a System.Windows.Shape (incl. Polygon, Circle, Triangle
Does anyone know a good way to minimize the width of a ToggleButton to
Does anyone know a good way to embed user controls inside an assenbly so
Does anyone know a good way to test if one element, stored in a
Does anyone know a good way to solve this other problem I have. My

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.