Changed the names of these two styles to what they really are: map reduce

This commit is contained in:
Crista Lopes
2014-03-11 15:18:32 -07:00
parent 56500a9255
commit 5c89f795ae
4 changed files with 3 additions and 3 deletions

15
30-map-reduce/README.md Normal file
View File

@@ -0,0 +1,15 @@
Style #30
==============================
Constraints:
- Input data is divided in chunks, similar to what an inverse multiplexer does to input signals
- A map function applies a given worker function to each chunk of data, potentially in parallel
- A reduce function takes the results of the many worker functions and recombines them into a coherent output
Possible names:
- Map-reduce
- Inverse multiplexer (check out electronics)