Compile
(Built-in Mathematica Symbol) Compile[{x_1, x_2, ...}, expr] creates a compiled function that evaluates expr assuming numerical values of the x_i. Compile[{{x_1, t_1}, ...}, expr] assumes that x_i is of a ...
Parallelization is an option for Compile that specifies whether it should create a compiled function that could run in parallel.
VerifyTestAssumptions is an option to LocationTest and similar functions that controls which assumptions to verify through diagnostic tests.
ParallelSubmit[expr] submits expr for evaluation on the next available parallel kernel and returns an EvaluationObject expression representing the submitted ...
CompilationTarget is an option for Compile that specifies the target runtime for the compiled function.
Mathematica has many matrix operations that support operations such as building, computing, and visualizing matrices. It also has a rich language for picking out parts of ...
ParallelMap[f, expr] applies f in parallel to each element on the first level in expr.ParallelMap[f, expr, levelspec] applies f in parallel to parts of expr specified by ...
TimeConstraint is an option for various algorithmic functions which specifies how long to spend trying a particular transformation or part of an algorithm.
Matrices are represented in Mathematica with lists. They can be entered directly with the { } notation, constructed from a formula, or imported from a data file. Mathematica ...
When large amounts of data are being transferred between Mathematica and a database, you may find that the operations are slow. In this case it may be advantageous to use a ...