Fix typo in docs

adatapted -> adapted
This commit is contained in:
Hollow Man 2020-11-22 00:00:07 +08:00
parent 1b3dd8f38b
commit 632a08ff40
No known key found for this signature in database
GPG Key ID: 06CA2A0660F48F7A

View File

@ -32,7 +32,7 @@ automatically available with the platform (e.g. APPLE GCD) but chances are that
have access to a parallel framework either directly or by enabling the option in CMake and rebuild the library.
The second (weak) precondition is more related to the task you want to achieve as not all computations
are suitable / can be adatapted to be run in a parallel way. To remain simple, tasks that can be split
are suitable / can be adapted to be run in a parallel way. To remain simple, tasks that can be split
into multiple elementary operations with no memory dependency (no possible race condition) are easily
parallelizable. Computer vision processing are often easily parallelizable as most of the time the processing of
one pixel does not depend to the state of other pixels.