ghPython parallel computing vs. system.threading.tasks?

Is there any reason to use the parallel module from ghPython vs. the regular parallel module from system.threading.tasks?

vs

??

Not really, the parallel module is just a simple wrapper around the Parallel.For function in the .NET runtime. The Parallel.For function in .NET is a generic which generally is a little tough to properly call from python code.