473,395 Members | 1,411 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

wall clock time in milliseconds to time c code sections

Hi everyone,

I am struggling with the following problem. I would like to measure the
wall clock time required to run a section of the code with a precision
of milliseconds. The attached code does the job on Windows Xp. However,
the code is not portable, as it fails to compile on Linux Red Hat. This
is the command and the errors:

# gcc -c time_loop.c
time_loop.c: In function 'main':
time_loop.c:34: error: storage size of 'tstruct1' isn't known
time_loop.c:34: error: storage size of 'tstruct2' isn't known
time_loop.c:26: warning: return type of 'main' is not 'int'

I will be grateful if anyone could tell know how to fix this problem so
that I can use the same code both on WinXp and Linux. In case it is not
possible, it will be very helpful to have alternative, preferably
concise, code that works on Linux.

Thanks in advance,

Pedro

Ps: and this is time_loop.c

#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/timeb.h>

/* GLOBAL PARAMETERS DECLARATION */

#define NM 25000000

/* MAIN ROUTINE */

void main(void)
{
int i;
long idb; /* with "register", it seems to take longer! */
/* register long idb; */
double tms1, tms2, telapsed;
float diff[12];
float vec_a[12]={6., 3., 4., 3., 7., 2., 1., 3., 8., 4., 9., 3.};
float vec_b[12]={3., 7., 2., 1., 3., 8., 4., 9., 6., 3., 4., 3.};
struct __timeb64 tstruct1, tstruct2;
/* Starting time */
_ftime64( &tstruct1 );
tms1=(double)tstruct1.time+((double)tstruct1.milli tm/1000.0);
for(idb=0; idb < NM; idb++)
{
for(i=0; i < 12; i++) diff[i]=vec_a[i]-vec_a[i];
}
/* Finishing time */
_ftime64( &tstruct2 );
tms2=(double)tstruct2.time+((double)tstruct2.milli tm/1000.0);
telapsed=tms2-tms1;
printf("It took:\t%lf seconds to calculate diff %d times\n",
telapsed, NM );

}

Nov 18 '06 #1
5 4924
pe*************@gmail.com wrote:
Hi everyone,

I am struggling with the following problem. I would like to measure the
wall clock time required to run a section of the code with a precision
of milliseconds. The attached code does the job on Windows Xp. However,
the code is not portable, as it fails to compile on Linux Red Hat. This
is the command and the errors:

# gcc -c time_loop.c
time_loop.c: In function 'main':
time_loop.c:34: error: storage size of 'tstruct1' isn't known
time_loop.c:34: error: storage size of 'tstruct2' isn't known
time_loop.c:26: warning: return type of 'main' is not 'int'

I will be grateful if anyone could tell know how to fix this problem so
that I can use the same code both on WinXp and Linux. In case it is not
possible, it will be very helpful to have alternative, preferably
concise, code that works on Linux.
Standard C does not offer a way to measure milliseconds
therefore I don't think there is a way to have such code
which works both on Linux and Windows. For Linux specific
advice you should ask at comp.os.linux.development.apps

But there is a way to fix the following warning on both systems
time_loop.c:26: warning: return type of 'main' is not 'int'
I'll leave it as an exercise to find how.

Nov 18 '06 #2
pe*************@gmail.com wrote:
time_loop.c:26: warning: return type of 'main' is not 'int'
If this is the warning your compiler gave you it's
either broken or the people who wrote it have a
very strange sense of humor. But I suspect that
you simply didn't copy the warning correctly. Cut
and paste is the only reliable method for programmes
and compiler messages.

Nov 18 '06 #3
"Spiros Bousbouras" <sp****@gmail.comwrites:
>pe*************@gmail.com wrote:
time_loop.c:26: warning: return type of 'main' is not 'int'

If this is the warning your compiler gave you it's
either broken or the people who wrote it have a
very strange sense of humor. But I suspect that
you simply didn't copy the warning correctly. Cut
and paste is the only reliable method for programmes
and compiler messages.
What do you mean? The OP's program had:

void main(void)
{
...
}

The warning seems perfectly correct; he defined a function called
"main" whose return type is not int.

And yes, that's the exact warning message I get from gcc for
"void main(void)".

The line number doesn't match the code he posted, but that indicates a
copy-and-paste error for the code, not for the warning.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 18 '06 #4
Keith Thompson wrote:
"Spiros Bousbouras" <sp****@gmail.comwrites:
pe*************@gmail.com wrote:
time_loop.c:26: warning: return type of 'main' is not 'int'
If this is the warning your compiler gave you it's
either broken or the people who wrote it have a
very strange sense of humor. But I suspect that
you simply didn't copy the warning correctly. Cut
and paste is the only reliable method for programmes
and compiler messages.

What do you mean?
My mind worked strangely. I understood
"return type of 'main' is not 'int'"
not as referring to main as appears in the
programme but as saying that the return
value of main should not be int.

The warning is indeed correct.

Nov 18 '06 #5
pe*************@gmail.com writes:
Hi everyone,

I am struggling with the following problem. I would like to measure the
wall clock time required to run a section of the code with a precision
of milliseconds.
<snip>
I will be grateful if anyone could tell know how to fix this problem so
that I can use the same code both on WinXp and Linux. In case it is not
possible, it will be very helpful to have alternative, preferably
concise, code that works on Linux.
This can't be done in standard (and hence portable) C. In such cases
it is often best to go the Unix(ish) route and use a function
specified in the POSIX standard since there are POSIX C libraries for
a lot of systems (including MS ones).

<offtopic>The POSIX function you want is gettimeofday. More
information and code examples would probably follow if you post on
comp.unix.programmer.</offtopic>

--
Ben.
Nov 19 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: James Harriman | last post by:
Hi, I need to be able to measure a time interval in milliseconds on a windows machine. I have tried using time.clock() but it appears to measure time in seconds...Is there a way to measure time...
13
by: Peter Hansen | last post by:
I would like to determine the "actual" elapsed time of an operation which could take place during a time change, in a platform-independent manner (at least across Linux/Windows machines). Using...
3
by: Ufit | last post by:
I must precisely measure the time of calculation. f.ex clock_t begin,finish,time; begin=clock(); Calculations(); finish=clock(); time=finish-begin; but unfortunatelly finish is equal to...
2
by: Randy Shore | last post by:
I have developed an Access application that replaces the paper scoresheet scoring for QuizBowl competitions with live, lap-top based scoring. Among other tasks the application displays a score...
12
by: aegis | last post by:
What is wall clock time? the standard doesn't define it but I see its use in past posts on clc. -- aegis
1
by: Geert Jansen | last post by:
Hi! I'm trying to profile an application that I believe is blocking on I/O for a significant amount of time. In trying to dig down where this happens, I profiled the application with hotshot....
9
by: Ron Adam | last post by:
I'm having some cross platform issues with timing loops. It seems time.time is better for some computers/platforms and time.clock others, but it's not always clear which, so I came up with the...
2
by: anto.anish | last post by:
Hi - I have been using clock() for calculating CPU time and time() for calculating Wall time. However, since time() does not provided milli/ microsecond accurancy, i started using...
4
dmjpro
by: dmjpro | last post by:
<body onload="setDynColck()"> <input type='hidden' id='millsecs' value='Capturing the milliseconds from server side'/> /******* Some server side coding to manipulate the current time...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.