Het is een bijverschijnsel van ouder worden dat je vaker terugdenkt aan vroeger. Dus toen ik recent een nieuwe rekencomputer aan het samenstellen was, moest ik terugdenken aan mijn eerste PC. Deze heb ik in 1993 […]
High Performance Computing
4 berichten
I’ve previously written about parallelizing for loops in C/C++ and C#. This is possible in Python, too, and might even be more important than in the two other languages, as Python’s interpreted nature can make it […]
I’ve previously written about parallelizing C/C++ for loops with OpenMP. Many of the concepts explained in that article also apply to C#. The main difference is that C# does not use OpenMP. For loops are instead […]
There were times when programmers did not have to worry about parallelisation, as most computers only had a single CPU. Sure, you could get dual-CPU mainboards, but their use was mostly limited to servers. The need […]