I want to be able to do true parallel processing of highly numerical algorithms, and currently I don't know if Nim can do this, and if so, I can't find many coding examples of more than rudimentary examples. So I was wondering since Nim compiles to C/C++ whether it currently can work with OpenMP. I assume it can't, since I haven't seen any documentation saying it can, so I'm wondering are there any plans to allow using OpenMP in Nim to provide true parallel processing?
I know that @mratsim was able to get it working in ArrayMancer(i.e., see openmp.nim) for some examples, but I'm not sure how more advanced usage would work.