cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

Test Time measurement

RA899
Level IV

Hi all, 

I'm not 100% sure, but I think I have seen a function that stores the run time. I need a function that captures the test time from the moment I click run until the analysis is complete. I'm using JSL. Thanks

2 ACCEPTED SOLUTIONS

Accepted Solutions
mmarchandTSI
Level V


Re: Test Time measurement

I think most people use the Today() function for this.  For instance,

 

Names Default To Here( 1 );
starttime = Today();
pl = {};
For( i = 1, i <= 10000000, i++,
	Insert Into( pl, i )
);
endtime = Today();
Print( "Execution took " || Char( endtime - starttime ) || " seconds." );

I like to use HP Time(), which works just like Today(), but it's in microseconds.

 

Names Default To Here( 1 );
starttime = HP Time();
pl = {};
For( i = 1, i <= 10000000, i++,
	Insert Into( pl, i )
);
endtime = HP Time();
Print( "Execution took " || Char( endtime - starttime ) || " microseconds." );

View solution in original post

txnelson
Super User


Re: Test Time measurement

There is also a function called Tick Seconds() that can be used

Names Default To Here( 1 );
t1 = Tick Seconds();
Open( "$SAMPLE_DATA/Big Class.jmp" );
t2 = Tick Seconds();
Round( t2 - t1, 3 );

 

Jim

View solution in original post

3 REPLIES 3
mmarchandTSI
Level V


Re: Test Time measurement

I think most people use the Today() function for this.  For instance,

 

Names Default To Here( 1 );
starttime = Today();
pl = {};
For( i = 1, i <= 10000000, i++,
	Insert Into( pl, i )
);
endtime = Today();
Print( "Execution took " || Char( endtime - starttime ) || " seconds." );

I like to use HP Time(), which works just like Today(), but it's in microseconds.

 

Names Default To Here( 1 );
starttime = HP Time();
pl = {};
For( i = 1, i <= 10000000, i++,
	Insert Into( pl, i )
);
endtime = HP Time();
Print( "Execution took " || Char( endtime - starttime ) || " microseconds." );
txnelson
Super User


Re: Test Time measurement

There is also a function called Tick Seconds() that can be used

Names Default To Here( 1 );
t1 = Tick Seconds();
Open( "$SAMPLE_DATA/Big Class.jmp" );
t2 = Tick Seconds();
Round( t2 - t1, 3 );

 

Jim
RA899
Level IV


Re: Test Time measurement

Thank you both! Both solutions are helpful and does the job.