Introduction Library Structure and Life Cycle Interaction with Mathematica
MapAt
(Built-in Mathematica Symbol) MapAt[f, expr, n] applies f to the element at position n in expr. If n is negative, the position is counted from the end. MapAt[f, expr, {i, j, ...}] applies f to the part of ...
Parallelization is an option for Compile that specifies whether it should create a compiled function that could run in parallel.
The Mathematica compiler can run computations in parallel. It does this by threading a compiled function over lists of data in parallel. A first step is to create a compiled ...
MapAll
(Built-in Mathematica Symbol) MapAll[f, expr] or f //@ expr applies f to every subexpression in expr.
ParallelArray[f, n] generates in parallel a list of length n, with elements f[i], evaluated.ParallelArray[f, {n_1, n_2, ...}] generates in parallel an n_1*n_2*... array of ...
Mathematica provides a powerful and unique environment for parallel computing. Much of the functionality can be used with a minimum of effort and without paying too much ...
Parallel Kernel Status opens a dialog with statistics on active parallel kernels.
The functional and list-oriented characteristics of the core Mathematica language allow Mathematica to provide immediate built-in data parallelism, automatically distributing ...
Parallel Kernel Configuration opens a dialog to add, remove, and configure parallel kernels.