ParallelSubmit
ParallelSubmit[expr] submits expr for evaluation on the next available parallel kernel and returns an EvaluationObject expression representing the submitted evaluation.
ParallelSubmit[{var1, var2, ...}, expr]builds a closure for the variables given before submitting expr.
Examples
ParallelSubmit[1 + 1]x = 5;
ParallelSubmit[{x}, x^2]Please visit the official Wolfram Language Reference for more details.