Am I right in a way to measure CPU time consumed by a block of code?

W

www

Hi,

I want to measure the CPU time, not the "apparent" user time, consumed
by a block of code in my Java program. This Java program was translated
from Fortran program and now we want to do some bench mark to compare
with its original Fortran program, but we don't want to count those I/O
operations. We just want to focus on the block of code doing heavy duty
scientific computations. The command

time java MyJavaClassName

will give the user time and system time spent for the whole program from
beginning to the end.

I came a "silly" idea for measuring the system time used by the block of
code we are interested in by using "time" command:

for(int i=1; i<=20; i++)
{
//code for doing computation
}

Then

time java MyJavaClassName

The extra system time is due to 19 runs of computation. The extra system
time used divided it by 19 gives me the system time for a single
computation.

Am I right? Thank you.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,262
Messages
2,571,056
Members
48,769
Latest member
Clifft

Latest Threads

Top