0
votes
2answers
37 views

PC performance and stability issue in multithreaded simple benchmark. How to make each thread run on separate core? [closed]

Look at my code in this post: How to write simple speed test app with CUDA? This time I'm not about the CUDA, but the code of application that is in the post. The issue I want to face is that the ...
1
vote
0answers
59 views

How to write simple speed test app with CUDA?

Below is the code of a simple app that tests speed of my 4 core CPU with HT. I want to write as much similar app as possible that makes speed test of my GPU with CUDA functionality by using CUDA. ...
1
vote
1answer
37 views

performance analysis of multiple platforms

I have written a Program that runs in two modes,Sequential and Multithreaded,with the purpose of running it on multiple processor architectures and then analyzing the processors' performance and ...
7
votes
1answer
54 views

Techniques for causing consistent GC Churn

I'm looking to benchmark how something performs while contending with a high amount of ongoing garbage collection. I've previously benchmarked how it behaves in a stable, single-threaded run, and I'd ...
3
votes
4answers
96 views

A proper benchmark?

I wanted to measure, how long 2 different programs need to perform 1 task. One program used threads, the other didn't.The task was to count up to 2000000. Class with threads: public class Main { ...
1
vote
4answers
103 views

Multithreading benchmark test

I want to measure how long it takes for the 2 threads to count till 1000. How can I make a benchmark test of the following code? public class Main extends Thread { public static int number = 0; ...
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
113 views

Benchmark for concurrent/multi-threaded capabilities of the system

Is anyone familiar and, if so, could you recommend me a benchmark for multi-threaded/concurrent capabilities of the system running JVM. I wrote my own few years ago using acyclic barrier to track ...
1
vote
2answers
328 views

Issues with using too many Threads a benchmark program

I've programmed a (very simple) benchmark in Java. It simply increments a double value up to a specified value and takes the time. When I use this singlethreaded or with a low amount of threads (up ...
1
vote
0answers
97 views

How to benchmark Linux threaded programs?

I'm trying to compare the performance of threaded programs (on Linux). Since the programs use different thread synchronization methods and different lock granularity, running the programs on a shared ...
1
vote
4answers
268 views

java producer-consumer multithreading benchmark. Why does it stop?

Please, help me with my problem. I have java program - test for server, something like echo, a benchmark tool. To simplify: I send to server 100 messages from a different number of threads ...
1
vote
2answers
170 views

How to create a Ruby timer that pauses while its thread is sleeping?

My Ruby application processes jobs that each take ~10 seconds to execute. Each job spends a lot of time waiting for IO. I have timers that use simple Time.now comparisons to record how long each ...
15
votes
2answers
1k views

Is it possible to force an existing Java application to use no more than x cores?

We are benchmarking existing Java programs. They are threaded applications designed to benefit from multi-core CPUs. We would like to measure the effect of the number of cores on the running speed, ...
0
votes
1answer
103 views

Python, I need the following code to finish quicker

I need the following code to finish quicker without threads or multiprocessing. If anyone knows of any tricks that would be greatly appreciated. maybe for i in enumerate() or changing the list to a ...
3
votes
3answers
905 views

Python, using multiprocess is slower than not using it

After spending a lot of time trying to wrap my head around multiprocessing I came up with this code which is a benchmark test: Example1: from multiprocessing import Process class Alter(Process): ...
0
votes
1answer
172 views

Do performance stats like Geekbench represent general multi-tasking performance?

I am trying to compare how an i7 dual core 2.7Ghz would perform vs. an i7 quad core 2.0Ghz in a multitasking environment. The quad core scores at around 9000 while the dual comes in at around 7500 ...
2
votes
4answers
166 views

Defining appropriate number of processes

I have a python code treating a lot of apache logs (decompress, parse, crunching numbers, regexping etc). One parent process which takes a list of files (up to few millions), and sends a list of files ...
2
votes
1answer
125 views

Why is multithreading this code leading to such inconsistent timings?

I have a function that processes a large image. By the specification, the largest this image can be is 55mb. The processing entails breaking the image into several different bands and then ...
1
vote
3answers
1k views

Java concurrent queries

I´m building a benchmarkapplication in Java as experiment. The purpose of the tool is to find out how fast a specific database (like Derby, MySQL for example) is in different settings. At the moment ...
2
votes
1answer
147 views

Evaluating one thread performance across all the methods

There is one thread which executes say 50 methods across several packages. I want to evaluate execution time for each method. This thread wakes on a signal and process this 50 method. Answer or ...
10
votes
4answers
1k views

Why is my multi threading not efficient?

I've designed a class that fills an array with integers using a various number of threads, in order to see the power of multi threading. But according to my result, there is none... The idea: The ...
3
votes
1answer
671 views

Reducing memory footprint with multiprocessing?

One of my applications runs about 100 workers. It started out as a threading application, but performance (latency) issues were hit. So I converted those workers to multiprocessing.Processes. The ...
0
votes
1answer
270 views

Benchmarks for Single and MultiThreaded programs

Hi I am trying to compare the performance of Single and Multithreaded Java programs. Are there any single thread benchmarks which are available which I could then use and convert to their ...
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 ...
2
votes
5answers
594 views

Comparing CPU speed likely improvements for business hardware upgrade justification

I have c# Console app, Monte Carlo simulation entirely CPU bound, execution time is inversely proportional to the number of dedicated threads/cores available (I keep a 1:1 ratio between ...
2
votes
3answers
410 views

Why are two Java threads (in some cases) more than twice as fast as one?

File: Example1.java public class Example1 implements Runnable { public void run() { for(int i = 0; i < 100000000; i++) { int x = 5; x = x * 4; x = x % 3; x = x + ...
2
votes
6answers
572 views

Benchmark problems for testing concurency

For one of the projects I'm doing right now, I need to look at the performance (amongst other things) of different concurrent enabled programming languages. At the moment I'm looking into comparing ...