0
votes
2answers
53 views

Partition a lifegame-like program for parallel computing with load balance

Consider a lifegame-like computing on a m*n matrix, it takes O(m*n) to develop each cycle. I'm going to modify this program to a parallel version using Pthread and MPI. The simplest way is static ...
0
votes
1answer
56 views

How to parallelize my n queen puzzle with Pthreads?

I have the following Pthreads code for n-queen puzzle. It compiles successfully, but I get wrong answer. Whatever value I type I get as an answer zero. I guess I have some kind of logic error in my ...
1
vote
1answer
75 views

Share 3D array between threads using pThreads

I am quite new in parallel programming and I am trying to parallelize an application using pThreads. I have a function that browse a 3D array, compute some things and store the result into another 3D ...
3
votes
2answers
243 views

How to parallelize monte carlo estimation of pi using pthreads?

#include <math.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <unistd.h> int main(int argc, char **argv) { unsigned long long in = 1; ...
0
votes
2answers
127 views

thread scheduling and yielding

If I have 4 working threads and 1 I/O thread running on a quad-core, one of the threads will be overlapped with another. How do i make sure that it is the input thread that is always overlapped with ...
2
votes
2answers
186 views

writing a parallel quick sort using p threads in c

I am trying to implement a parallel quick sort algorithm but i am not so sure how to make use of pthreads inside the quick sort function. This is a link to my code on paste bin ...
2
votes
1answer
136 views

Use of pthread increases execution time, suggestions for improvements

I had a piece of code, which looked like this, for(i=0;i<NumberOfSteps;i++) { for(k=0;k<NumOfNodes;k++) { mark[crawler[k]]++; r = rand() % ...
2
votes
1answer
109 views

PThreads: Cores vs Threads

I'm using a complex C code that has parallel support through posix threads. It was written before hyperthreading existed. I am running the code on a Macbook i5 (2 Cores 4 Threads). Since the code has ...
1
vote
3answers
119 views

thread building block combined with pthreads

I have a queue with elements which needs to be processed. I want to process these elements in parallel. The will be some sections on each element which need to be synchronized. At any point in time ...
2
votes
2answers
93 views

3by3 thread synchronization : how to avoid overhead

Let's say I'm running N threads. Every thread needs to be sync with the next and the previous one. for (i = 0 ; i < NITER; i++){ do_something (); sync_with_neighbours (tId - 1, tId ...
0
votes
1answer
132 views

Pthread program always run slower than normal

I build in Ubuntu 12.04 with command g++ -pthread hello.cpp But I run parallel mode always slows than normal . Here's my code #include <iostream> #include <pthread.h> #include ...
0
votes
1answer
331 views

PThreads for visual studio express 2010

Recently i started learning parallel programming using PThreads , but i have a problem with the compilation "how to include the library into visual studio" , please any help Thanks in advance
0
votes
0answers
70 views

What makes parallel code sections and sequential code sections different?

We do have the parallel programs which in turn has the critical section which runs sequentially. Basically the size of the critical section is small but do you think this small piece of code behaves ...
0
votes
0answers
123 views

Allocating a Thread's Stack on a specific NUMA memory

I would like to know if there is a way to create the stack of a thread on a specific NUMA node. I have written this code but i'm not sure if it does the trick or not. pthread_t thread1; int main(int ...
3
votes
1answer
159 views

Cache use, spatial locality, and latency

I am learning cache operations with regard to spatial locality. (My references so far are Principles of Parallel Programming by Lin and Snyder, this tutorial, and of course Wikipedia.) Take the ...
1
vote
2answers
309 views

Single-threaded and multi-threaded code taking the same time

Ive been using pthreads but have realized that my code is taking the same amount of time independently if i use 1 thread or if i separate the task into 1/N for N threads. To exemplify i reduced my ...
4
votes
1answer
152 views

Interdepended parallel computation time measurement

I have a question concerning runtime measurements in parallel programms (I used c++ but I think the question is more general). Some short explanations: 3 threads are running parallel (pthread), ...
0
votes
1answer
311 views

Accelerate a C program using pthreads

I'm new here, and also I'm relatively new in programming in general. I' ve writen a program in C and I need to accelerate it using pthreads. I've tried to do so using OpenMP, but I don't know how to ...
1
vote
3answers
168 views

Using a flag to communicate between threads

On the Internet, there can be found many debates about the use of volatile keyword in parallel programming, sometimes with contradictory argumentation. One of the more trustworthy discussion of this ...
2
votes
4answers
93 views

Is it safe to access different sub-arrays with different threads without syncing?

If I have 10 threads, and an array of 10 sub-arrays, is it safe to have each thread do work on a different one of the sub-arrays? i.e. thread[0] does stuff to array[0], thread[1] does stuff to ...
0
votes
2answers
443 views

What exactly does a pthread mutex lock out?

I'm assuming this has been asked on here, but I can't find this particular question. Does it just lock the part of the code in between the lock and unlock, or does it lock global variables? Like for ...
2
votes
1answer
111 views

How can I increase the number of threads running in my process?

I'm just playing around with threads to get used to them, so I wanted to make 20 threads that are all alive at the same time, and wrote this program: static void * threadFunc(void *str) { ...
1
vote
1answer
342 views

Learning MPI and Pthread

I have to learn about MPI and pthread for a parallel comp architecture course. The first half of this course will be based on parallel programming. I am not a CS major and don't have rigorous ...
0
votes
2answers
317 views

How to verify atomic operations on multithreaded and multicore platforms in C?

I am trying to understand the atomic operations, and I have prepared the sample code below. But I am getting the same result - 150 - when I define one of these conditional compilation flags - MUTEX, ...
0
votes
1answer
508 views

error: cannot open source file of some headers

i am trying to run a phtread program in visual studio 2010. in this code there is "sys/times.h", " sys/time.h" and file unistd.h. i face errors which listed as follow : canot open source file ...
2
votes
3answers
146 views

broadcasting doesn't work with barriers

I'm trying to implement a basic worker pool using pthreads. The scenario is that I want a fix number of workers, that live throughout the duration of my program. I'll never need to signal single ...
0
votes
2answers
1k views

How to use pthread_setaffinity_np

I am working on a performance critical system that has a lot of logging. I am planning to do my major computation in a thread that sticks to one core, and logs in another thread that sticks to another ...
2
votes
2answers
307 views

what's the best sorting algorithm for multi-thread programming?

I want to sort an array of ints with a length of 1.000.000 to 100.000.000 . I want to run this program on a core2duo computer with 2Mb cache using pthread library. I want the fastest algorithm! I ...
0
votes
5answers
79 views

Suggestion for parallelizing an application?

I have to parallelize some c++ application for my college project. But, I could not think of any application that is not very huge and can be parallelizes. I would like suggestions from you guys. ...
1
vote
1answer
185 views

Are there any good concurrency/parallelism books out there that are NOT focused on Java? [closed]

I want a more C++/Linux oriented book. I do have some basics of multithreading/parallel programming under my belt, but I want to both brush my skills and improve them further.
3
votes
1answer
427 views

openMP histogram comparison

I am working on the code that compares image histograms, buy calculating correlation, intersection, ChiSquare and few other methods. General look of these functions are very similar to each other. ...
4
votes
1answer
252 views

Parallel application has random behavior

I am writing a C program using pthreads to do a wavefront pattern computation on a bidimensional matrix. To achieve good performance, I distribute several rows to each thread in an interleaved manner, ...
-1
votes
3answers
2k views

Parallel Merge Sort with threads /much/ slower than Seq. Merge Sort. Help

http://pastebin.com/YMS4ehRj ^ This is my implementation of parallel merge sort. Basically what I do is, For every split, the first half is handled by a thread whereas the second half is sequential ...
0
votes
2answers
499 views

Using lock in OpenMP and Pthreads

I have a program that uses both Pthreads and OpenMP. Basically, 2 threads (Thread A and B) are created using Pthreads to do work, and in Thread A, OpenMP is used to parallelize a for loop. If I have ...
1
vote
2answers
169 views

state of parallelism in MS C# and Mono

for a project I'm working on, I need to work with threads. I was wondering: what is the state of parallelism in MS C# and, particularly, Mono, as compared for example to OpenMP and pthreads? How much ...
2
votes
2answers
103 views

Stopping individual threads

Using the pthread library in C, is it possible to send a SIGSTOP signal to an individual thread? I want to ensure that even though I create N threads in a loop, all should start executing only when ...
5
votes
3answers
6k views

CPU Affinity Masks (Putting Threads on different CPUs)

I have 4 threads, and I am trying to set thread 1 to run on CPU 1, thread 2 on CPU 2, etc. However, when I run my code below, the affinity masks are returning the correct values, but when I do a ...
2
votes
1answer
920 views

Problem with semaphores and sem_wait()

I have a queue structure that is being used by several pthreads. The threads are supposed to dequeue from the queue if it's not empty and then do their business. I initially had this set up as a ...
0
votes
1answer
76 views

A question about parallelizing a task

I have a question about parallelization: I have two datasets. Dataset1 has m rows and k columns, Dataset2 has n rows and k columns.(m > n) My program reads those datasets from files and store them in ...
2
votes
7answers
2k views

What can make a program run slower when using more threads?

This question is about the same program I previously asked about. To recap, I have a program with a loop structure like this: for (int i1 = 0; i1 < N; i1++) for (int i2 = 0; i2 < N; i2++) ...
3
votes
3answers
1k views

pthreads - how to parallelize a job

I need to parallelize a simple password cracker, for using it on a n-processor system. My idea is to create n threads and to feed them more and more job as they finish. What is the best way to know ...
13
votes
20answers
2k views

Which parallel programming APIs do you use?

Trying to get a grip on how people are actually writing parallel code currently, considering the immense importance of multicore and multiprocessing hardware these days. To me, it looks like the ...