Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ex3.explanation.txt 401 B

il y a 2 ans
12345678
  1. My machine has 4/8 cores
  2. From results, improvement from 1->2 threads and 2->4 threads is almost 2 times,
  3. but not exactly, since creating threads and joining them takes time as well.
  4. When the number of threads is larger then the number of physical cores of my CPU,
  5. e.g. 4->10 threads, 10->100 threads, the improvement is insignificant, since two
  6. threads cannot run on the same core at the same time.