linux-c-programming.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* using the correct tool to time my parallel program
@ 2007-06-09  5:08 Mark Farnell
  2007-06-09  8:02 ` Ingvald Gjesdal
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Farnell @ 2007-06-09  5:08 UTC (permalink / raw)
  To: linux-c-programming

I have a parallel program, which calls some message passing functions
which block.  Then I attempted to use times() (with struct tms) to
time the program.

the struct tms gives me the "program time" and the "system time" as
well as the child process time (if any).  However does it also include
the time spent when my program is blocked (i.e. network time).

This is important because although I use gprof to separate the CPU
time spent by my program vs libraries, when I calculate the total time
spent, I really need to include the time spent waiting for message
from network (network time).

Therefore is times() really appropriate for my purpose?  If not, what
other functions can I use instead? (such as gettimeofday?)

Thanks!

Mark

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: using the correct tool to time my parallel program
  2007-06-09  5:08 using the correct tool to time my parallel program Mark Farnell
@ 2007-06-09  8:02 ` Ingvald Gjesdal
  0 siblings, 0 replies; 2+ messages in thread
From: Ingvald Gjesdal @ 2007-06-09  8:02 UTC (permalink / raw)
  To: linux-c-programming

You can use the return value from times(), which returns the number of
clock ticks since system boot

Ingvald

Mark Farnell wrote:
> I have a parallel program, which calls some message passing functions
> which block.  Then I attempted to use times() (with struct tms) to
> time the program.
> 
> the struct tms gives me the "program time" and the "system time" as
> well as the child process time (if any).  However does it also include
> the time spent when my program is blocked (i.e. network time).
> 
> This is important because although I use gprof to separate the CPU
> time spent by my program vs libraries, when I calculate the total time
> spent, I really need to include the time spent waiting for message
> from network (network time).
> 
> Therefore is times() really appropriate for my purpose?  If not, what
> other functions can I use instead? (such as gettimeofday?)
> 
> Thanks!
> 
> Mark
> -
> To unsubscribe from this list: send the line "unsubscribe 
> linux-c-programming" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 


-- 
Ingvald Gjesdal
5955 Lindås

ingvald.gjesdal@start.no
Tlf. 56 36 96 03
Mob. 408 00 084
-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-06-09  8:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-09  5:08 using the correct tool to time my parallel program Mark Farnell
2007-06-09  8:02 ` Ingvald Gjesdal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).