Threads
Add
a parallel implementation of add
Calling Sequence
Parameters
Description
Examples
Add( f, i = m..n )
Add( f, i = x )
Add( f, i in x )
Add[ tasksize = s ]( ... )
f
-
(expression)
i
(name)
m, n
numeric values
x
s
(optional, posint) maximum task size
The Add command is a parallel implementation of the add command. For a complete description of the calling sequence of Add see the add help page.
Add is implemented using the Task programming model.
Add attempts to determine how to divide the input into separate tasks to spread the work across all available cores. However in some situations Add may not choose the optimal size. In particular a small number of long running tasks may not be spread evenly over all threads. In this case, you can specify the maximum task size using the tasksize option. Add will divide the input into tasks that compute at most tasksize elements within a single task.
with⁡Threads:
Add⁡i2,i=1..5
55
L≔seq⁡i,i=1..5
L≔1,2,3,4,5
Add⁡i2,i=L
Add⁡ai⁢xi,i=0..5
a5⁢x5+a4⁢x4+a3⁢x3+a2⁢x2+a1⁢x+a0
Add⁡i,i=∞..0
0
See Also
add
Threads[Map]
Threads[Mul]
Threads[Seq]
Download Help Document