0
votes
1answer
34 views
Can Linux be run under Windows 7? [closed]
In Windows 7 if you have a multi-core processor you can run virtual machines. There is something called XP mode which lets you do a full XP install and lets you run XP just like t …
1
vote
2answers
80 views
List of multicore embedded CPUs [closed]
I'm working on compiling a list of hard-core multicore embedded cpus.
Hard-core: in contrast to soft-core devices such as the Microblaze, which are loaded onto FPGAs.
Currently …
3
votes
3answers
136 views
Segmentation fault only when running on multi-core
I am using a c++ library that is meant to be multi-threaded and the number of working threads can be set using a variable. The library uses pthreads. The problem appears when I run …
0
votes
2answers
94 views
Thread behavior on multicore machines
Does the threads of a single process run in parallel on a multi-core machine on windows XP? Is the behavior same on different windows versions (windows server editions)
I have hea …
0
votes
5answers
99 views
Threads & Processes Vs MultiThreading & Multi-Core/MultiProcessor : How they are mapped?
I was very confused but the following thread cleared my doubts:
Multiprocessing, Multithreading,HyperThreading, Multi-core
But it addresses the queries from the hardware point of …
4
votes
2answers
50 views
Can XSLT processors be multi-threaded?
Hi everyone,
I'm fishing for approaches to a problem with XSLT processing.
Is it possible to use parallel processing to speed up an XSLT processor? Or are XSLT processors inheren …
2
votes
3answers
128 views
How can I Monitor cpu usage per thread of a java application in a linux multiprocessor environment?
Hello,
I'm running a multithreaded java app in Linux RedHat 5.3 on a machine that has 8 cores (2 quad-core cpu's).
I want to monitor the cpu usage of each thread, preferably rela …
5
votes
3answers
235 views
What’s a good multi-core 64-bit “Hello World” program?
I recently got my home PC upgraded to a quad-core CPU and 64-bit OS. I have some former experience with C/C++ and I'm really "itching" to try exercising some 64-bit CPU capabilitie …
0
votes
4answers
129 views
Would a multithreaded Java application exploit a multi-core machine very well?
Hi,
Say I have a dual-core windows laptop and I run a multithreaded application on it. Does the JVM run only on one core or do the JVM and the OS somehow communicate to split thre …
3
votes
12answers
383 views
Multicore programming: what’s necessary to do it?
I have a quadcore processor and I would really like to take advantage of all those cores when I'm running quick simulations. The problem is I'm only familiar with the small Linux …
1
vote
2answers
134 views
AMD multi-core programming
I want to start to write applications(C++) that will utilize the additional cores to execute portions of the code that have a need to perform lots of calculations and whose comput …
4
votes
3answers
161 views
Why are closures suddenly useful for optimizing programs to run on multiple cores?
I read an article that claims that closures (or "blocks") are a useful weapon in the "War on Multicores", because
[...] they allow you to create units of
work, which each hav …
7
votes
4answers
105 views
.NET movement of threads between cores
Follow up question from Multi-core usage, threads, thread-pools.
Are threads moved from one core to another during their lifetime?
Of course. Imagine you have thre …
17
votes
7answers
440 views
Recommended book about parallel programming - theory & best practice?
I'm looking for a book or books about multicore, multithreaded programming. The perfect book should focus on best practices and maybe include a bit of theory background. I'm not in …
3
votes
3answers
173 views
assembly and multicore cpu’s
Can anyone tell me what x86-64 instructions are used to enable/disable other cores/processors and how one starts executing code on them? Is there documentation somewhere on how thi …
