ion Description Run(function, inputs) Apply inputs to function. Map(function, inputs) For each input in inputs, apply function. MapReduce(mapper, reducer, inputs) For each input in inputs apply mapper, sort intermediate outputs, and then apply reducer. AllPairs(function, inputs_a, inputs_b) Apply function to all combinations of inputs_a and inputs_b. Wavefront(function, matrix) Compute recurren...