Tagged Questions
1
vote
1answer
42 views
simulate user load on hardware router
I am trying to simulate user load on a hardware router. I am specifically trying to emulate the average load of a home router.
What i need to to do is load it up over a week long period at different ...
0
votes
2answers
144 views
How to clear drive cache in C when reading files on NTFS
I am making a drive benchmark in C on Linux operating system, and I have encountered a problem on NTFS file system. Heres some code that writes many new files:
for ( int i = 0; i < 100; ++i )
{
...
1
vote
0answers
80 views
Is a reliable, monotonic time source available in Hyper-V guests to do benchmarking?
Hyper-V guests encounter horrible clock drifts. If I my memory does not fail me, I saw drifts of many seconds over the course of only a few minutes, if not less. And I'm not talking about cases where ...
0
votes
0answers
104 views
Interpreting Linux time command result
I want to benchmark BLAST running time on my server so I started the time command.
The server has 16 CPUs and I was running the BLAST 16 threaded. There may have been other applications running in ...
1
vote
1answer
173 views
performance degradation with large pages
I play with a Java benchmark (SPECJbb) but observed some performance degradation with large pages (2M per page) enabled. Our server is NUMA arch based, has 80 cores (160 logical cpu when HT enabled) ...
0
votes
0answers
31 views
Effects of Thread Count on Disk Throughput
I want to test that how much disk throughput is affected from increasing I/O bounded thread count.
Do you know any tools / techniques to measure effect of thread count on disk throughput ?
0
votes
0answers
25 views
Why all the SPEC JBB2005 results use Windows server? [closed]
I'm looking at the SPEC JBB2005 result in SPEC JBB website.
http://www.spec.org/jbb2005/results/res2012q3/
http://www.spec.org/jbb2005/results/res2012q4/
I find that when use Oracle's HotSpot,seems ...
3
votes
1answer
53 views
Are the results of the Linux time command affected by system load?
I'm using the Linux shell time and GNU time commands for some basic benchmarking.
But my system occasionally has varying load from other users.
Are the "user" and "sys" outputs affected by these ...
0
votes
1answer
309 views
Speed of Python on Linux vs Mac [closed]
Out of curiosity: If I run a program on MacOS 10.8 (Python 2.7.2) it takes 21 seconds to finish. The same code running under a virtual Linux machine on the same computer takes 13 seconds (Python ...
3
votes
3answers
148 views
How can I write a test application to fully load the CPU?
The CPU is designed to drop into low power modes whenever it can to save power and keep cool, I'd like to make a program to prevent that from happening.
I'm working on a few different embedded ...
2
votes
2answers
90 views
Website Benchmarking using ab
I am trying my hand at various benchmarking tools for the website I am working on and have found Apache Bench (ab) to be an excellent tool for load testing. It is a command line tool and is very easy ...
1
vote
0answers
172 views
Readonly filesystem benchmark software on Linux
Updated: iozone has an option -+E which could use non-iozone file to run a readonly FS benchmark test
I am working on a project which aimed at making a 2level-cached read-only filesystem, and now I ...
1
vote
2answers
289 views
Is there any good Linux benchmark suite? [closed]
I find some on http://lbs.sourceforge.net, but all look out of date. I am transferring from one machine to another, but the same program running on the new machine gives worse result. So I wanna a ...
5
votes
5answers
266 views
What harm can a C/asm program do to Linux when run by an unprivileged user?
I have been thinking about a scenario where one lets users (can be anyone, possibly with bad intentions) submit code which is run on a Linux PC (let's call it the benchmark node). The goal is to make ...
8
votes
3answers
2k views
Is the UNIX `time` command accurate enough for benchmarks?
Let's say I wanted to benchmark two programs: foo.py and bar.py.
Are a couple thousand runs and the respective averages of time python foo.py and time python bar.py adequate enough for profiling and ...
13
votes
4answers
755 views
Executable runs faster on Wine than Windows — why?
Solution: Apparently the culprit was the use of floor(), the performance of which turns out to be OS-dependent in glibc.
This is a followup question to an earlier one: Same program faster on Linux ...
3
votes
3answers
1k views
Same program faster on Linux than Windows — why?
The solution to this was found in the question Executable runs faster on Wine than Windows -- why? Glibc's floor() is probably implemented in terms of system libraries.
I have a very small C++ ...
4
votes
2answers
1k views
Benchmark a linux Bash script
Is there a way to benchmark a bash script's performance? the script downloads a remote file, and then makes calls to multiple commandline programs to manipulate. I would like to know (or as much as ...
0
votes
1answer
409 views
What's the meaning of “Min xfer” and “throughput” in the output of IOzone
I'm a new user of IOzone, when I run the IOzone with the command: ./iozone -i 0 -i 1 -t 2 -T, it generates the following result(partially):
Command line used: ./iozone -i 0 -i 1 -t 2 -T
Output is in ...
4
votes
2answers
326 views
Benchmark simulating “realistic” desktop/server workload
I'm currently working on a good energy estimation using the CPU's performance counters. To be able to choose the best counters, I need a benchmark simulating realistic workload.
So, does anybody know ...
4
votes
1answer
2k views
How reliable is current_kernel_time()?
I am working on performance benchmarking of a SDIO UART Linux/Android driver and used current_kernel_time() at start and end of the to-be-analysed read, write function implementation, then printing ...
0
votes
1answer
389 views
VMware Workstation 7 C/C++ Compile Workload Performance
Can anyone point me to VMware workstation benchmarks for compile workload?
Been looking for a while and I can't find any. It's a bit weird - this is supposedly a developer oriented product. Full ...
2
votes
1answer
514 views
Benchmarking programs on Linux
for an assignment we need to benchmark our implementations with different optimizations and parameters. Is there a feasible way of benchmarking little programs on the linux command line (I know of ...
3
votes
3answers
862 views
Looking for an accurate way to micro benchmark small code paths written in C++ and running on Linux/OSX
I'm looking to do some very basic micro benchmarking of small code paths, such as tight loops, that I've written in C++. I'm running on Linux and OSX, and using GCC. What facilities are there for sub ...
4
votes
2answers
3k views
millisecond-accurate benchmarking in C++?
I do not really wish to profile because I was wanting to do many different small benchmarks on different simple functions. For the life of me I cannot find a way to record the amount of milliseconds ...
2
votes
2answers
470 views
I want to benchmark solaris and linux with java
Can anyone point me out to a project out there that I can download and run it and it would load / stress test itself and then provide me with reports? I want the project to be as big as it can and to ...
1
vote
3answers
458 views
how can I Limit mysql to single cpu, to allow hardware benchmarking
I have a web application that seems to like to make mysql work hard (cpu wise), as a result i want to establish how the performance of our application scales as we transition to more modern hardware, ...
1
vote
2answers
674 views
Microbenchmark showing process-switching faster than thread-switching; what's wrong?
I have two simple microbenchmarks trying to measure thread- and process-switching overheads, but the process-switching overhead is turning out to be lower than that of thread-switching, which is ...
1
vote
1answer
249 views
Getting timing consistency in Linux
I can't seem to get a simple program (with lots of memory access) to achieve consistent timing in Linux. I'm using a 2.6 kernel, and the program is being run on a dual-core processor with realtime ...
5
votes
1answer
2k views
Why is sys+user > real in “time command”?
I have a program that uses pthread library to do the matrix multiplication of 500x500 matrix. Each thread calculates 50 rows of the matrix.
When I time its execution:
shadyabhi@shadyabhi-desktop:~$ ...
1
vote
2answers
3k views
Benchmark Test Software Running on Windows and Linux/Ubuntu
Just wondering if there is any benchmark software that I can download that will run on both Windows (preferable Windows 7) and Linux (Ubuntu 9.10)? I have a brand new system and I'd like to run some ...
2
votes
5answers
358 views
Reducing performance variations on Linux
I am trying to benchmark a piece of software that runs on an Intel Pentium with Linux on top of it. The problem is, that I get considerable performance variations during consecutive test runs, when ...
4
votes
2answers
329 views
Determining cache misses for various filesystems
I've got a project for school where I have to find out how many cache misses a filesystem will have under heavy and light loads and on a multiple processor machine. After discussing this with my ...
13
votes
8answers
6k views
Anyone here has benchmarked Intel C++ compiler and GCC?
I am not sure whether I should post this question here, because this seems to be a programming-oriented website.
Anyway, I think there must be some gurus here who knows this.
Now I have a AMD ...
16
votes
3answers
4k views
How do I get monotonic time durations in python?
I want to log how long something takes in real walltime. Currently I'm doing this:
startTime = time.time()
someSQLOrSomething()
print "That took %.3f seconds" % (time.time() - startTime)
But that ...
4
votes
6answers
14k views
5
votes
2answers
8k views
What is the best Linux filesystem for MySQL (InnoDB)? [closed]
I tried to look for benchmark on the performances of various filesystems with MySQL InnoDB but couldn't find any.
My database workload is the typical web-based OLTP, about 90% read, 10% write. Random ...
1
vote
1answer
848 views
Performance Evaluation of Linux Scheduler
I have done some simple changes to the scheduler in the Linux Kernel. Now, I would
like to see how those changes affect the response time of the system; in other words,
I would like to know how long ...
7
votes
4answers
2k views
How to do “performance-based” (benchmark) unit testing in Python
Let's say that I've got my code base to as high a degree of unit test coverage as makes sense. (Beyond a certain point, increasing coverage doesn't have a good ROI.)
Next I want to test performance. ...
0
votes
7answers
7k views
Linux benchmarking tools
I've been asked to evaluate a new vendor's computing system and management has requested that I do NOT use any of our existing software to evaluate the platform (believe it or not, they have some ...
4
votes
1answer
1k views
Linux filesystem benchmarking best practices
(Not really a programming question, sorry)
I'm working on benchmarking various filesystems (most importantly: ext3) with various filesystem options (for instance: noatime, relatime etc.) for specific ...