I am trying to find a way to write a program to find the correct combination of numbers relating to a card game I used to play, but there are 30ish variables to loop through (between 1 up to 50 or so). I was advised that coding the program in a “parallel” way rather than nested loops would be better, especially if I was able to access a supercomputer or HPC multi-processing system to process the code.
I have checked some of the C++ editor/compilers on my home PC and they do not recognize “parfor” as a keyword. Would I have to download addons such as VTune Profiler/Parallel Studio/OpenMP and install them as plug-ins to those compilers? I have tried MS Visual Studio, and some others including CodeBlocks, Eclipse, CodeLite and Dev++ compilers.