Conversion to Linpack


 
Thread Tools Search this Thread
UNIX Standards and Benchmarks UNIX & LINUX Benchmarks (Version 3.11) Linux Benchmarks Conversion to Linpack
# 1  
Old 04-04-2004
Conversion to Linpack

Should we conver to Linpack for Linux Benchmarks?

http://www.netlib.org/benchmark/hpl/


What do you think?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. High Performance Computing

HPC Linpack test

Hi, I compiled Linpack with ATLAS for test. What other libraries except ATLAS can be used to test? (2 Replies)
Discussion started by: PtaQ
2 Replies

2. High Performance Computing

High Performance Linpack Compiling Issue

I'm trying to compile Linpack on a Ubuntu cluster. I'm running MPI. I've modified the following values to fit my system TOPdir MPdir LAlib CC LINKER. When compiling I get the following error: (the error is at the end, the other errors in between are because I've ran the script several times so... (0 Replies)
Discussion started by: JPJPJPJP
0 Replies

3. UNIX for Advanced & Expert Users

.so to .sl conversion ?

Hi all, I have one libxxx.so file ( which I got from a third party ). We use shared library libxxx.sl . Is there any way to convert the .so file to .sl file ? Thanks in advance - M (3 Replies)
Discussion started by: kanu_kanu
3 Replies

4. Shell Programming and Scripting

Help in conversion ......

Hi, I have a requirement to capture file time stamp and compare with current system time. I am using HP-AUX K-shell. Below is what i have done Getting current date into myfile2 --------------------------------- date +%Y%m%d%H%M%S > myfile2 20091110132800 Getting the file date into... (5 Replies)
Discussion started by: chinniforu2003
5 Replies

5. Shell Programming and Scripting

Conversion

How to convert Nov 10 14:20 to YYYYMMDDHHMMSS in unix I am using K-shell HP-AUX (1 Reply)
Discussion started by: chinniforu2003
1 Replies

6. Shell Programming and Scripting

epoch conversion

I need to convert an epoch time from a file into a standard UTC time and output it in the same format but I'm not sure what's the best approach here's the input file and the bold part is what I need to convert. 1,1,"sys1",60,300000 2,"E:",286511144960 3,1251194521,"E:",0,0... (2 Replies)
Discussion started by: satchy321
2 Replies

7. UNIX for Dummies Questions & Answers

Date conversion

Hi all, When using ls -l I get the details of a filename with the date in the format Jun 22, is I need to get it as 22/06, is there any ls command that would do this or is there a way to do this ? (8 Replies)
Discussion started by: happyrain
8 Replies

8. High Performance Computing

Tuning HPL.dat for Beowulf Cluster [Linpack]

Hi guys, I am having some issues tuning the HPL.dat file for the Linpack benchmark test across 2 nodes. I am very new to this with minimal Linux experience, however i am trying my luck. The specs for the two nodes are: 3GHZ QX6850 CORE 2 EXTREME (QUAD CORE) 4GB RAM I have been typing these... (1 Reply)
Discussion started by: mercthunder
1 Replies

9. Shell Programming and Scripting

conversion

hi all i have a file like 151125 25252 2452567 253464576 255 i want this file to be like '151125','25252','2452567','253464576','255' please help thanks (3 Replies)
Discussion started by: infyanurag
3 Replies

10. UNIX for Advanced & Expert Users

conversion

Dear friends, i am writing sh shell script I have a file containing binary data. like this. 010101010101010101101010101010100001010101010101001. i want to read some particular bits and convert it into decimal valuse. example. 1.first i want to read 5 bits and convert it into... (1 Reply)
Discussion started by: rajan_ka1
1 Replies
Login or Register to Ask a Question
bench(1)						      General Commands Manual							  bench(1)

NAME
bench - http benchmark SYNOPSIS
bench [-n requests] [-c concurrency] [-t timeout] [-k] [-K count] [-C cookie-file] [http://]host[:port]/uri DESCRIPTION
bench is a HTTP benchmark program that can fetch the same URL over and over again, or fetch several URLs (coming in from stdin). If you specify a URL on the command line, this URL will be fetch many times (specify with -n, default: 10000) with several connections open in parallen (specify with -c, default: 10). You can specify a timeout (per request) in seconds with -t. The -k switch activates keep-alive mode. In keep-alive mode, the TCP connection is not closed between requests. You also have to specify how many HTTP requests can go over one TCP connection with -K. bench can also send one HTTP cookie per connection, as specified using a cookie file. The cookie file is read line by line, and each request gets the next line inserted into it. So each line should look something like this: Cookie: foo=bar If the end of the file is reached, bench restarts it at the beginning. AUTHOR
Initially written by Felix von Leitner <felix-gatling@fefe.de>. LICENSE
GPLv2 (see http://www.gnu.org/copyleft/gpl.html) bench(1)