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 […]
C/C++
3 Beiträge
I recently ran into issues when using really large arrays in C++ for a dataset of several hundred million points. I have access to a computer with 512 GB of RAM, but even there the program […]
Most of my code is in C#, but I occasionally encounter functionality that is only available in a C++ DLL. Luckily, it is possible to call C++ DLLs from C#, the main challenge being the difference […]