Parallelism: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Software Architecture =Overview=") |
|||
Line 4: | Line 4: | ||
=Overview= | =Overview= | ||
Parallelism can be exploited when the code that is executed in parallel is safe, meaning the code does not access shared data. This code is referred to as [[Functional_Programming#Pure_Function|pure function]]. |
Revision as of 18:42, 22 March 2018
Internal
Overview
Parallelism can be exploited when the code that is executed in parallel is safe, meaning the code does not access shared data. This code is referred to as pure function.