Use passive voice throughout

This commit is contained in:
heyarne 2021-03-13 16:06:03 +01:00
commit 3e6e2dd09f
8 changed files with 29 additions and 29 deletions

View file

@ -251,8 +251,8 @@
"source": [
"## Result\n",
"\n",
"As we can see when processing a single element, multiprocessing comes with an overhead.\n",
"When the list to be processed is sufficiently large, we get a slight reduction in processing time, that, even with a higher standard deviation, manages to be faster than the single-process version.\n",
"Multiprocessing comes with an overhead, which is significant enough to rule it out when processing a single element.\n",
"When the list of elements is sufficiently large, there is a slight reduction in processing time, that, even with a higher standard deviation, manages to be faster than the single-process version.\n",
"\n",
"Averaging the masked array is an operation that can be implemented to scale in $O(N)$ with the size of the input array.\n",
"The time reduction should be even higher for more complex tasks."