File: test.c

package info (click to toggle)
saclib 2.2.8-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 11,868 kB
  • sloc: ansic: 40,932; csh: 1,190; asm: 541; awk: 320; sh: 246; perl: 116; makefile: 98; sed: 48
file content (25 lines) | stat: -rw-r--r-- 542 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Based on Figure A.1: A sample program from SACLIB User's Guide */

#include "saclib.h"

int sacMain(int argc, char **argv)
{
	Word I1,I2,I3,t;
	Word i,n;
Step1: /* Input. */
	I1 = 100;
	I2 = 100;
	n = 100;
Step2: /* Processing. */
	t = CLOCK();
	for (i=0; i<n; i++)
		I3 = IPROD(I1,I2);
	t = CLOCK() - t;
Step3:
/* Output. */
	IWRITE(I1); SWRITE(" * "); IWRITE(I2); SWRITE(" =\n"); IWRITE(I3);
	SWRITE("\nRepeating the above computation "); GWRITE(n);
	SWRITE(" times took\n"); GWRITE(t); SWRITE(" milliseconds.\n");
Return:
	return(0);
}