Multicore programming covers techniques for making programs run in parallel, by exploiting hardware with multiple processing cores.
1
vote
1answer
16 views
Gwan - Why gwan determine only 1 core?
I am currently testing the gwan web server, I have a question about the default settings for the gwan worker, and the CPU Core detection.
Running gwan on a Xen server (which contains a 4-core Xeon ...
0
votes
1answer
41 views
Difference between multi-core processors [closed]
I am confused with "multi-core" processors concept.
Some multi-core processors, link ARM A9/x86, we run uni-OS, like linux/windows. Every core works well.
But others, link TI's C6678, we run a linux ...
0
votes
2answers
61 views
Multi core, make function called from inside function to run on second core. directshow, opencv
So, I've been working on a real time tracking system with opencv. A couple of days ago I had to start using directshow (which was totally new for me) because I needed higher resolution from the ...
1
vote
2answers
22 views
How to make sure that nodejs cluster assigns processes to different cores?
When utilizing multi cores via Node.js' cluster module is it guaranteed that each forked node worker is assigned to a different core?
If it's not guaranteed is there any way to control or manage it ...
-1
votes
1answer
32 views
How to disable/enable cpu cores *without* root access [closed]
I have been trying to disable or enable one or more CPU cores in my linux machine using
sudo sh -c "echo 'n' > /sys/devices/system/cpu/cpu1/online"
Just thinking if there is a way out there to ...
0
votes
0answers
47 views
Calculating SVD using multiple cores in R
I want to run svd() in R on a large sparse matrix (17k x 2m), and I have access to a cluster. Is there a straightforward way to calculate SVD in R using multiple cores?
The RScaLAPACK package ...
-3
votes
1answer
54 views
Check which thread is running on which CPU in linux
I'm interested in finding which thread is running on which core/CPU. My Tomcat6 is using a single CPU core 100% and all other CPUs (my server has 16 other cores idle) are not being utilized... so I'm ...
1
vote
1answer
46 views
Is it possible to implement efficiently a parallel mathematic computation in a 4 core Android device? (This has nothing to do with interfaces)
I know that for keeping a responsive interface in Android the heavy work must be completed in an independent thread. I understand well how to accomplish this (by using AsynTask..., etc), and this is ...
1
vote
2answers
56 views
R diff function on large dataset
I'd like to use the diff function on a really big data.frame : 140 Millions rows and two columns.
The goal is to compute the gap between two consecutive date activity, for each user_id.
For each ...
0
votes
0answers
57 views
Python equivalent of R's mclapply()
The R package multicore has a function mclapply() which applies a specified function over a list of things and takes advantage of multiple cores. It's easy to use and results in big speed boosts.
Is ...
0
votes
1answer
41 views
Android set thread affinity
Following the answer from this StackOverflow question how do I create the proper
integer for mask?
I made some googling and the everything I found uses CPU_SET macro from sched.h but it operates on ...
-12
votes
0answers
106 views
How to shutdown CPU cores in a driver? [closed]
I am trying to write a driver for XP 64-bit that prevents processing on particular selectable CPU cores. The important point is that the cores must be able to be started again with different code (a ...
1
vote
1answer
70 views
Multi-threading for multi-core processors
I have Samsung Galaxy S3, which used its own Exynos 4 Quad processor.
So I want to optimize my app, that it can use all 4 cores of processor.
So I made some tests:
Run task in one thread. ...
2
votes
3answers
96 views
Am I doing multi core programming the right way here
I want to have some daemon that finds images that I need to convert into web and thumb versions. I thought python could be useful here, but I'm not sure if I'm doing things right here. I want to ...
0
votes
1answer
84 views
Parallel code is taking longer time than sequential code using Parallel computing toolbox in MATLAB. Why?
I am working with MATLAB. I am just new with parallel computing toolbox in MATLAB. I have core i3 processor, MATLAB R2011a, 2 GB of RAM, 320 Hard disk.
To calculate speed up, I just wrote following ...
2
votes
0answers
154 views
Fast popcount on Intel Xeon Phi
I'm implementing an ultra fast popcount on Intel Xeon® Phi®, as it's a performance hotspot of various bioinformatics software.
I've implemented five pieces of code,
#if defined(__MIC__)
#include ...
-1
votes
1answer
115 views
Dual core i7-3540M 3.0 GHz vs Quad corei7-3632QM 2.2 GHz
I intend to buy a laptop to study parallel computing with GPU and multicore CPU. I don't know which is the better one between a Dual core i7-3540M 3.0 GHz and a Quad core i7-3632QM 2.2 GHz. Both of 2 ...
-1
votes
0answers
92 views
GPU vs CPU? Number of cores/threads in a GPU for program calculation acceleration?
I need some help understanding the concept of cores on a GPU vs. cores in a CPU for the purpose of doing parallel calculations.
When it comes to cores in a CPU, it seems pretty simple. I have a super ...
1
vote
2answers
136 views
Obtaining thread Core affinity in C++ 11 through pthreads
I'm trying to set core affinity (Thread #1 goes on first core, Thread #2 goes on second core, ...) while using std::thread in C++ 11.
I've already searched around various topics and on the internet ...
0
votes
0answers
27 views
is it possible to schedule a kernel thread to a specific core
In linux it is possible to schedule a pthread to a specific processor core using set_affinity() function. is it possible to schedule a kernel thread to a specific core somehow. if yes, is it possible ...
0
votes
1answer
25 views
using PAPI for reading Performance monitoring counters in Intel Core i7
I want to read performance monitoring couters in Core i7
The out put for each event just contains 1 data and has no information about the core this data is for.
How can I read the events counts for ...
1
vote
1answer
66 views
How do I monitor the usage by CPU on Android?
I know that I can monitor the total usage by using, for instance:
adb top -m 10
But I would be interested in monitoring each CPU separately. Using top on Linux, I can use the interactive command ...
3
votes
2answers
99 views
Multi-core Android
I have run simple parallel algorithm drawing the mandelbrot set to test parallel computations on a Nexus 7 (Tegra 3, 4+1 cores). After running several times I get 1.5 seconds for serial and 1.0 for ...
0
votes
0answers
23 views
How can we find out individual core runqueue length?
I am designing algorithm for Linux kernel module for process migration in multicore-architecture. For that i need to find out individual cores load at time intervals of say 1 min. Treating run queue ...
3
votes
5answers
77 views
How do I access all computer cores for computation in python script?
I have a python script that has to take many permutations of a large dataset, score each permutation, and retain only the highest scoring permutations. The dataset is so large that this script takes ...
4
votes
2answers
135 views
Port Haskell code using Control.Parallel to Scala
The Haskell code below uses par and pseq to do some multicore number-crunching as a toy to show several cores being used. What would be the easiest and most idiomatic way to express this in Scala? ...
6
votes
1answer
121 views
Is it possible to assign parts of the shared L2 caches to different cores
Lets say, 4 threads are running on 4 separate cores of a Multicore x86 processor, and they do not share any data, is it possible to progammatically make the 4 cores use separate and predefined ...
4
votes
2answers
71 views
Running a list of functions with different params with a single command
I am looking to test outcome of different regression/classification algorithms (i.e. svm, nnet, rpart, randomForest, naiveBayes, etc.) on the same data, to see which works better. But I need to have ...
3
votes
1answer
59 views
R Checking for duplicates is painfully slow, even with mclapply
I've got some data involving repeated sales for a bunch of of cars with unique Ids. A car can be sold more than once.
Some of the Ids are erroneous however, so I'm checking, for each Id, if the size ...
0
votes
0answers
94 views
R multicore mcfork(): Unable to fork: Cannot allocate memory
I'm getting the titular error:
mcfork(): Unable to fork: Cannot allocate memory
after trying to run a function with mcapply, but top says I'm at 51%
This is on an EC2 instance, but I do have ...
1
vote
1answer
75 views
XMM Registers Total or Per Core
In a multicore CPU, does each core have access to it's own bank of XMM registers? For example if a chip is listed as having 16 XMM registers (XMM0-XMM15), is that 16 registers per core or 16 shared?
...
0
votes
1answer
38 views
how to pass value into boost option parameter of code from qsub
I have a program that takes some value from user (parameter is passed using boost option).
./prog --my-value 32
Its fine till here, but now I am running the program in multi nodes and multi cores ...
3
votes
1answer
105 views
Scanning for CPU cache operations in multicore systems with C++
I'm searching for C++ code / functions that allow to monitor read / write operations on the CPU cache / caches for multicore CPUs in order to be able to detect performance bottle necks due to ...
0
votes
0answers
11 views
L2 cache in Niagara
I am reading the paper of Niagara, see: http://classes.soe.ucsc.edu/cmpe202/Winter07/papers/niagara.pdf
I got puzzled when I came to these sentences:
Stores do not update the local caches until ...
1
vote
1answer
44 views
How to designate a Process/Thread to a certain core in a multi-core environment?
I mean, in the implementation of an OS, what mechanism can do this job? e.g., in the Linux kernel? Or, as we all know there are tools by which we can achieve this conveniently, like the Windows Task ...
1
vote
1answer
154 views
How to set affinity on multiple cpu cores of a single CPU not on Multiple CPUs?
I am currently working in C multi-threading on server having multiple hexa-core cpus. I want to set affinity of some of my threads to respective cores of a single CPU. I have used ...
1
vote
1answer
94 views
Is CPU time relevant to Hyperthreading?
Is increased CPU time (as reported by time CLI command) indicative of inefficiency when hyperthreading is used (e.g. time spent in spinlocks or cache misses) or is it possible that the CPU time is ...
0
votes
1answer
83 views
Multicore computing with Rhadoop
I have tried to calculating something with Rhadoop(linkage between R and hadoop).
When I benchmarked my cluster with embedded examples in Hadoop-1.0.4, it looked working well. ( I mean all of the ...
0
votes
1answer
132 views
Creating an R function to use mclapply from the multicore package
I need to analyze some simulated data with the following structure:
h c x1 y1 x1c10
1 0 37.607056431 104.83097593 5
1 1 27.615251557 140.85532974 10
...
0
votes
0answers
114 views
Fatal error in MPI_Init: Other MPI error
Fatal error in MPI_Init: Other MPI error, error stack:
MPIR_Init_thread(392).................:
MPID_Init(139)........................: channel initialization failed
...
0
votes
2answers
349 views
Python multiprocessing.Pool with many processes [closed]
I'm trying to create many parallel processes to leverage a 32-core machine but when I looked at top screen, it shown only 5 Python processes. This was my code:
max_processes = min(len(corpus_paths), ...
2
votes
0answers
80 views
Multi-core simulators/emulators advice [closed]
Just want to know if there are any good simulators/emulators I can use to simulate a multi-core system on a standard desktop PC (Intel Core i3, 4 GB RAM etc.)
Need to experiment on:
Implementing a ...
1
vote
1answer
67 views
Explanation of state replication of barrelfish
Can you tell how the Barrelfish OS is implementing the state replication of its kernel on each each core or closely-coupled "shared" on cores in case e have a multi or many cores chip.
As I am trying ...
7
votes
2answers
97 views
BufferedReader in a multi-core environment
I have 8 files. Each one of them is about 1.7 GB. I'm reading those files into a byte array and that operation is fast enough.
Each file is then read as follow:
BufferedReader br=new ...
12
votes
2answers
223 views
Setting process core quotas with C++
If you write software where the customer pays for the number of CPU cores the software uses, then what would be the best way of achiving this in your C++ code? My research so far has led me to use ...
0
votes
1answer
117 views
Solr full import with multicores
I'm trying to create a Solr machine with multiple cores.
At the moment, my problem is performing the initial full import. The first core imports perfectly. However, when I try to import the second ...
0
votes
2answers
77 views
multicore::sapply?
Is there anything like sapply in the multicore library? Or do I have to unlist(mclapply(..)) in order to achieve this?
If it does not exist: what would the reasoning be?
Thanks in advance and sorry ...
3
votes
3answers
89 views
Is there a simple way to run a C/C++ program parallelly without recoding?
I have a multi-cores machine but when i tried to run this old C program (http://www.statmt.org/moses/giza/mkcls.html) it only utilizes one core. Is there a way to run the C code and send the ...
0
votes
0answers
107 views
pthreads are not working in multicore system
I have a system running with POSIX using pthreads, mutex, etc. When I run it in PC with a single processor running Linux the program runs fine, but when I run it on a multicore system the program just ...
0
votes
1answer
105 views
force scheduler to allocate thread to specific processor
Consider a case where we have multiple processor/cores and two threads. Is it possible to force the linux scheduler to always schedule the specific thread(both) to a specific processor at every ...

