1
vote
1answer
193 views

Testing write/read speed on NTFS, FAT, EXT4

I have to write a program in C (or C++) in Linux that will tests write and read speed on different file systems. I have to be sure that all data are written to the disk (not in cache). So my first ...
0
votes
2answers
149 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 ) { ...
0
votes
2answers
112 views

time() ok when debugging (JTAG), not-ok when running on-chip. How to time with an embedded proc?

I'm "playing" with the rm48 board (Texas Instrument RM48L952, ARM CORTEX-R4F), and i want to time a loop (for instance). char message[20]; int temp=0; time_t start, end, elapsed; sciInit(); start ...
0
votes
0answers
91 views

how to make iozone re-read and re-write the same block over and over again

(I don't know whether this is the right place or not, so fell free to move to some other SE site if this doesn't belong here) I've been using the iozone benchmark suite to run some tests on a ...
3
votes
3answers
149 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 ...
12
votes
1answer
526 views

How to reliably compare runtime of Haskell and C?

I used Criterion library to write benchmarks for my Haskell functions. Now I am implementing the same algorithm in C to compare performance with Haskell. The question is how can I do it reliably? ...
-2
votes
1answer
93 views

How to measure network speed on a single machine using C [closed]

So I'm trying to measure the network speed, using one system in C, in terms of bytes/second; my parameter space should include the loopback interface card (between 2 processes on the same node), ...
21
votes
5answers
965 views

Sorting string vectors: plain C vs idiomatic C++11

I am currently trying to learn C++11 and its fancy features. To be specific I am searching for high efficiency genericity. So I happily wrote a program in C++11 to sort lines of an input file to test ...
11
votes
1answer
186 views

Which bottleneck is hit using printf on > 65KB strings?

This program prints 65k bytes per line. I measure the throughput with ./a.out | pv >/dev/null and get around 3 GB/s. As soon as I change the line length to 70k, the throughput drops to ~ 1 GB/s. ...
2
votes
1answer
117 views

C regex performance

I'm writing a code in C to perform some regex in enwik8 and enwik9. I'm also creating the same algorithm in other languages for benchmark purposes. The issue is that I'm doing something wrong with my ...
0
votes
0answers
62 views

Apache Benchmark not continue after first request in a simple C server

I want to benchmark the "Hello World" performance of a HTTP server made in C. Despite the curl -v http://localhost:8000/ gives an output and does not hang, Chrome does not open it an ab -c 1 -n 10 ...
2
votes
3answers
1k views

performance for reads of nsdictionary vs nsarray

Continuing off this post: Performance hit incurred using NSMutableDictionary vs. NSMutableArray> I am trying to run a little test to see if the performance gap is that great for read and writes ...
11
votes
2answers
303 views

C program is faster as Python subprocess

I have a multithreaded mergesorting program in C, and a program for benchmark testing it with 0, 1, 2, or 4 threads. I also wrote a program in Python to do multiple tests and aggregate the results. ...
6
votes
7answers
2k views

Why is matrix multiplication faster with numpy than with ctypes in Python?

I was trying to figure out the fastest way to do matrix multiplication and tried 3 different ways: Pure python implementation: no surprises here. Numpy implementation using numpy.dot(a, b) ...
2
votes
2answers
355 views

Benchmark the performance of file systems

I'm taking Computer Organization class this semester. My professor give us a homework.the description is as follows: Write a program to benchmark the two file systems, Windows and Linux. Discuss ...
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 ...
2
votes
2answers
642 views

C: Memcpy vs Shifting: Whats more efficient?

I have a byte array containing 16 & 32bit data samples, and to cast them to Int16 and Int32 I currently just do a memcpy with 2 (or 4) bytes. Because memcpy is probably isn't optimized for ...
2
votes
2answers
363 views

write one big file or multiple small files

I'm wondering what is better in therms of performance: write in one big text file (something about 10GB or more) or use a subfolder system that will have 3 levels with 256 folders in each one, the ...
0
votes
1answer
118 views

Benchmarking functions multiple times - All calls after first are instruction cached?

I'm writing a small benchmarking library in C which is used to benchmark single functions. The way it works is that you supply the benchmarking function with a pointer to a void function without ...
1
vote
2answers
109 views

Why is this C program reporting more throughput than nload?

I run the following C program between two machines with 10GibE; the program reports 12Gib/s whereas nload reports a (more believable) 9.2Gib/s. Can anyone tell me what I'm doing wrong in the program? ...
8
votes
5answers
343 views

Is there a better way to benchmark a C program than timing?

I'm coding a little program that has to sort a large array (up to 4 million text strings). Seems like I'm doing quite well at it, since a combination of radixsort and mergesort already cut the ...
3
votes
3answers
573 views

How do you benchmark memory consumption?

I would like to know if there is an efficient way to measure the actual memory consumption of a particular C data structure. The goal being to make benchmarks based on how the memory usage changes ...
3
votes
2answers
1k views

Haskell binary tree fast implementation

I implemented binary tree data structure in Haskell. My code: module Data.BTree where data Tree a = EmptyTree | Node a (Tree a) (Tree a) deriving (Eq, Ord, Read, ...
1
vote
1answer
164 views

Zipping and encryption benchmark comparison

So I'm creating a web application where I need to encrypt / decrypt files, zip them up and send them to the browser. The site is in php (codeigniter), but the actual file serving component can be in ...
1
vote
1answer
713 views

TPC-H dbgen generator

Has anyone generated a big, really big table about a millions records using this tool DBGEN TPC-H?, some one recommended it, but only gave me the url. The software is DBGEN, it is a program in C that ...
6
votes
7answers
252 views

Is MySQL database access speed limited primarily by the db, or by the language used to access it?

I need to update a large db quickly. It may be easier to code in a scripting language but I suspect a C program would do the update faster. Anybody know if there have been comparative speed tests?
2
votes
1answer
51 views

Timing release mode (optimized) functions

I would like to do some benchmarking on a few simple functions in C. // Record start time // Do a bunch of work for (int i = 0; i < SOME_BIG_NUMBER; i++) mySimpleFunction(); // Record ...
1
vote
3answers
180 views

Network programming achieving nowhere near benchmark

I've been doing some network programming using Java and C. So far I've only been able to achieve network speeds of around 15 MegaBytes/sec using different techniques and seemingly regardless of ...
5
votes
5answers
2k views

Global Variables performance effect (c, c++)

I'm currently developing a very fast algorithm, with one part of it being an extremely fast scanner and statistics function. In this quest, i'm after any performance benefit. However, i'm also ...
3
votes
3answers
185 views

Benchmarking an application in a fully loaded machine

I need to "time" or benchmark a number crunching application written in C/C++. The problem is that the machine where I run the program is usually full of people doing similar things, so the CPUs are ...
1
vote
1answer
178 views

Looking for numerical/multimedia/signal_processing benchmarks in C (maybe c++)

I am working on custom instruction selection algorithms for fgpas softcore, and I need some C code to test my system. My requirement are: Oriented toward heavy number crunching : ...
2
votes
2answers
279 views

OCaml MicroBenchmark

I am trying a basic microbenchmark comparison of c with ocaml. I have heard that for the fibonacci program, c and ocaml are about the same, but I can't replicate those results. I compile the c code ...
3
votes
2answers
248 views

How to do good benchmarking of complex functions?

I am about to embark in very detailed benchmarking of a set of complex functions in C. This is "science level" detail. I'm wondering, what would be the best way to do serious benchmarking? I was ...
0
votes
1answer
294 views

Reading from memory mapped register

The processor architecture I am working with has a time tag counter that I wanna read out to make performance measurements. The time tag counter is memory mapped to the address 0x90000008. I used the ...
1
vote
0answers
263 views

multimaps(benchmark) source code in C

I am actually seeking the multiMAPS benchmark source code written in C. It is a benchmark that measures memory bandwidth.. Did somebody heard about it?
1
vote
3answers
1k views

A good line-graph generator for my benchmarking?

To learn more about a language I rewrite some of the core functions, or compare basic speeds of each set of functions per problem to see what is more suited in real world situations. Other than an ...
0
votes
1answer
158 views

Queues implementation benchmark

I'm starting development of a series of image processing algorithms, some of them with intensive use of queues. Do you guys know a good benchmark for those data structures? To narrow the scope, I'm ...
1
vote
1answer
956 views

Berkeley DB and C++ benchmark example?

I'm trying to run benchmarks with a little berkeley db and c++ code, just for research purposes. Currently I'm testing with the following code. I'm filling the recors only with incrementing integers ...
4
votes
4answers
366 views

What are good test cases for benchmarking & stress testing substring search algorithms?

I'm trying to evaluate different substring search (ala strstr) algorithms and implementations and looking for some well-crafted needle and haystack strings that will catch worst-case performance and ...
0
votes
2answers
673 views

Execution time in nano seconds and related issues

I am using the following code to compute execution time in milli-secs. struct timespec tp; if (clock_gettime (CLOCK_REALTIME, &tp) == 0) return ((tp.tv_sec * 1000000000) + tp.tv_nsec); else ...
1
vote
2answers
675 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 ...
52
votes
4answers
16k views

Why is go language so slow?

As we can see from The Computer Language Benchmarks Game: go is on average 10x slower than C go is 3x slower than Java !? How can this be, bearing in mind that go compiler produces native code ...
0
votes
1answer
155 views

How to invalidate cache when benchmarking?

I have this code, that when swapping the order of UsingAs and UsingCast, their performance also swaps. using System; using System.Diagnostics; using System.Linq; using System.IO; class Test { ...
1
vote
3answers
649 views

For simple C cmd programs: how to add “program executed in 12,345 seconds”?

I'm a windows user, and I'm learning C. I use Codeblocks and visual c++ 2008 express at home to write simple C command line programs (I'm a beginner) and I find really useful when codeblocks adds a ...
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 ...
7
votes
3answers
1k views

Benchmarks used to test a C and C++ allocator?

Please kindly advise on benchmarks used to test a C and C++ allocator? Benchmarks satisfying any of the following aspects are considered: Speed Fragmentation Concurrency Thanks!
2
votes
3answers
409 views

Timing program execution

I have a project written in C and I would like to know if there is a simple way to profile its execution time and memory usage under Windows. Thanks in advance.
12
votes
4answers
7k views

How can I benchmark C code easily?

Is there a simple library to benchmark the time it takes to execute a portion of C code? What I want is something like: int main(){ benchmarkBegin(0); //Do work double elapsedMS = ...
2
votes
2answers
882 views

Use heap storage instead of stack (K&R 5.7)

I have a program that sorts input lines lexicographically, and I've come to this exercise in K&R: Rewrite readlines to store lines in an array supplied by main, rather than calling alloc to ...
30
votes
8answers
28k views

How to Calculate Execution Time of a Code Snippet in C++

I have to compute execution time of a C++ code snippet in seconds. It must be working either on Windows or Unix machines. I use code the following code to do this. (import before) clock_t startTime ...

1 2