ParallelProduct[expr, {i, i_max}] evaluates the product \[Product]i = 1 i_max expr in parallel.ParallelProduct[expr, {i, i_min, i_max}] starts with i = ...
ParallelDo[expr, {i_max}] evaluates expr in parallel i_max times. ParallelDo[expr, {i, i_max}] evaluates expr in parallel with the variable i successively taking on the ...
ParallelNeeds["context"] evaluates Needs["context"] on all available parallel kernels.
$ConfiguredKernels is the default list of kernels that are configured to be launched for parallel computing.
A process is simply a Mathematica expression being evaluated. A processor is a parallel kernel that performs such evaluations. The command ParallelEvaluate discussed in the ...
$KernelID is a unique ID number assigned to each running parallel kernel.
KernelObject[n, name, ...] represents a kernel available for parallel computing.
CloseKernels[] terminates all parallel kernels from the list Kernels[].CloseKernels[k] terminates the kernel k.CloseKernels[{k_1, k_2, ...}] terminates the kernels k_1, k_2, ...
CellularAutomaton[rule, init, t] generates a list representing the evolution of the cellular automaton with the specified rule from initial condition init for t steps. ...
DistributedContexts is an option for various parallel computing functions that specifies which definitions for symbols appearing in an expression should be distributed to all ...