Is it possible to parallelize the execution of a C++ function using Julia? And would it be similarly efficient as doing it directly in C++?
For instance sending the function: int foo(arg1, arg2) with different values, each iteration executed on a different processor, and bringing back the results.
