EY Interview Question | Parallelism
Question
When can parallelism make your algorithms run faster? When could it make your algorithms run slower?
in progress
0
Interview Question
4 years
1 Answer
782 views
Great Grand Master 0
Answer ( 1 )
When there will be no data dependency or instruction dependency, parallelism can make algorithms run faster. If we are trying to achieve parallelism with less data, it can make the algorithms slower.
Correct me if I am wrong.