Tests


 
Thread Tools Search this Thread
UNIX Standards and Benchmarks UNIX & LINUX Benchmarks (Version 3.11) Linux Benchmarks Tests
# 1  
Old 08-14-2004
Tests

Dhrystone 2 without register variables 858767.1 lps (10 secs, 6 samples)
Dhrystone 2 using register variables 879713.0 lps (10 secs, 6 samples)
Arithmetic Test (type = arithoh) 2880633.4 lps (10 secs, 6 samples)
Arithmetic Test (type = register) 166883.2 lps (10 secs, 6 samples)
Arithmetic Test (type = short) 137434.5 lps (10 secs, 6 samples)
Arithmetic Test (type = int) 167087.9 lps (10 secs, 6 samples)
Arithmetic Test (type = long) 166867.5 lps (10 secs, 6 samples)
Arithmetic Test (type = float) 235811.4 lps (10 secs, 6 samples)
Arithmetic Test (type = double) 235963.0 lps (10 secs, 6 samples)
System Call Overhead Test 117020.7 lps (10 secs, 6 samples)
Pipe Throughput Test 145018.3 lps (10 secs, 6 samples)
Pipe-based Context Switching Test 104136.3 lps (10 secs, 6 samples)
Process Creation Test 1549.7 lps (10 secs, 6 samples)
Execl Throughput Test 908.3 lps (9 secs, 6 samples)
File Read (10 seconds) 484706.0 KBps (10 secs, 6 samples)
File Write (10 seconds) 85132.0 KBps (10 secs, 6 samples)
File Copy (10 seconds) 15638.0 KBps (10 secs, 6 samples)
File Read (30 seconds) 458784.0 KBps (30 secs, 6 samples)
File Write (30 seconds) 82632.0 KBps (30 secs, 6 samples)
File Copy (30 seconds) 13266.0 KBps (30 secs, 6 samples)
C Compiler Test 557.5 lpm (60 secs, 3 samples)
Shell scripts (1 concurrent) 1543.8 lpm (60 secs, 3 samples)
Shell scripts (2 concurrent) 909.7 lpm (60 secs, 3 samples)
Shell scripts (4 concurrent) 477.3 lpm (60 secs, 3 samples)
Shell scripts (8 concurrent) 239.0 lpm (60 secs, 3 samples)
Dc: sqrt(2) to 99 decimal places 22615.7 lpm (60 secs, 6 samples)
Recursion Test--Tower of Hanoi 12866.0 lps (10 secs, 6 samples)



After running the Benchmark, I decided i should actually understand what each test being carried out is doing / relates to. As a newbie i ask the more knowledgable individuals to exlplain each test!!

cheers

Josh
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

BASH Grouping tests in IF statement

Ok I got the following to work by removing the parentheses arount $year and it works. Can a kind soul please explain this behavior. Also, to my topic question, am I using curly braces correctly in the IF statement? The intent is to check for a leap year. If the year is divisible by 400 then no need... (6 Replies)
Discussion started by: Riker1204
6 Replies

2. Shell Programming and Scripting

What am I doing wrong in awk with multiple tests?

awk -v pat="$pattern" 'NR == 1 {print $0}; $0 ~ pat {print $0}' infile.csv > outfile.csv The first row of my file contains headers so I want them. Otherwise, I want only lines containing the BASH variable pattern which I am passing to awk with -v. This is giving me all the lines containing... (6 Replies)
Discussion started by: Michael Stora
6 Replies

3. Shell Programming and Scripting

Unit tests for HTTP server implementation

Anybody know of a suite of server-validation tests? I am trying to build my own HTTP server, but do not know of all the status code responses (like "200 OK") or the internal methods (like "keep-alive") which should be implemented to be considered a "complete" solution. Any help? (3 Replies)
Discussion started by: jjinno
3 Replies

4. UNIX for Dummies Questions & Answers

Combining awk tests

It would be convenient to be able to combine awk tests. For example, suppose that I do this query: awk '$1 != "Bob" || $1 != "Linda" {print $2}' datafileIs there a reasonable way to combine the conditions into a single statement? For example, in egrep, I can do: egrep -v "Bob|Linda"... (4 Replies)
Discussion started by: treesloth
4 Replies

5. UNIX for Dummies Questions & Answers

Tests for existence of files/directories

Hi, - The first question I have concerns a very fundamental aspect of a unix OS. Specifically, does unix treat everything as a file (ie a directory is just a type of file)? - The reason I ask is that I am trying to determine which BASH unary operator I would to use to determine whether or not... (1 Reply)
Discussion started by: msb65
1 Replies

6. Shell Programming and Scripting

shell scripting tests

hi all, i will have a shell scripting exam by thursday and i need a solved exams to get ready for my exam.that is very important for me.i really appreciate your help. (0 Replies)
Discussion started by: shaimaa
0 Replies

7. Solaris

Performance tests

Lately one of our clients have been complaining of slowness. I really don't think its their pc's because all of them have had the slownes. I think its the Unix server we use (Solaris 8 Sparc). Are there any ways I could check on the server with commands to see if its slower then usual Thanks (4 Replies)
Discussion started by: eloquent99
4 Replies

8. News, Links, Events and Announcements

Tests of AMD's 64-bit PCs: Fastest yet

FYI: http://www.cnn.com/2003/TECH/ptech/09/24/amd.athlon.ap/index.html (0 Replies)
Discussion started by: Neo
0 Replies
Login or Register to Ask a Question