- Wrap up parallelization
- Dynamic programming
August 21, 2023
Multiple threads completing tasks at the same time in the same memory space.
Pros:
Cons:
Multiple processors are completing tasks at the same time.
Each processor has its own memory space
Cons:
Pros:
Try to do multi-threading first.
When to do multi-processing:
…