Skip to main content

Questions tagged [multi-core]

Filter by
Sorted by
Tagged with
0 votes
1 answer
2k views

This is more of a Computer Engineering question, but what is the feature of a CPU to run Javascript fast? I use to access the internet with an AMD Phenom II with 6 cores and I could almost have as ...
Dehbop's user avatar
  • 169
0 votes
1 answer
159 views

I'm new to actors and just playing around in ruby using Celluloid. I have this code below module Enumerable # Simple parallel map using Celluloid::Futures def pmap(&block) futures = map { ...
Grimbox's user avatar
  • 377
6 votes
3 answers
539 views

I made some basic multi-threading tests here, and noticed that the speed increase when using the exact is bigger than I expected. I assumed that speed would increase linearly until I hit the limit of ...
speeder's user avatar
  • 647
-2 votes
2 answers
411 views

A faster prime number generator with hyperthreading and L1 cache About five years ago I wrote a simple VB widget to generate the first one million prime numbers and then port them to into its single ...
Brett Bergan's user avatar
3 votes
1 answer
979 views

As the title says, why does Node not support several event loops in one Process? The idea, is that node spawns a user decided number of threads, which each have an event loop. When a new callback is ...
Coder3000's user avatar
5 votes
3 answers
4k views

I've built a Java NIO TCP server, it currently uses four threads. One ServerRunnable thread that uses a selector and three worker threads. I've been looking around for some information about this, ...
mal's user avatar
  • 273
2 votes
1 answer
228 views

I am working on a real time multiprocessor scheduling algorithm. I found very few results via google research related to it. A few simulators are available but are not robust enough. OpenMp is an ...
Winn's user avatar
  • 129
9 votes
2 answers
3k views

So I saw this video on Youtube with all these C++ masters on GoingNative 2012 : Interactive panel where everybody could ask the questions. This is the video I was talking about: GoingNative 2012 - ...
user avatar
0 votes
1 answer
297 views

I have been reading about the MIPS architecture and learned that it has been used a multiprocessor architecture in the past. Is anyone presently using it in a multicore SoC?
DeveloperDon's user avatar
  • 4,978
37 votes
7 answers
4k views

In the early days of FORTRAN and BASIC, essentially all programs were written with GOTO statements. The result was spaghetti code and the solution was structured programming. Similarly, pointers can ...
DeveloperDon's user avatar
  • 4,978
8 votes
4 answers
5k views

After reading http://clojure.org/rationale and other performance comparisons between Clojure and many languages, I started to think that, apart from ease of use, I shouldn't be coding in Python ...
Julio Rodrigues's user avatar
2 votes
6 answers
568 views

Since my SO thread was closed i guess i can ask it here. What practice or practices are good 90% of the time when working with threading with multiple cores? Personally all i have done was share ...
user avatar