tonyyxliu / CUHKSZ-CSC4005

Project Materials for CUHK(SZ) Course CSC4005: Parallel Programming
MIT License
79 stars 31 forks source link

Typo in the document #53

Closed hey-money closed 1 year ago

hey-money commented 1 year ago

There is a typo in the hints of the even-odd sort section:

For example, let's assume the complete array is [1, 2, 4, 3, 5, 6], and there are two processes. Process 1 gets [1, 2, 3], and process 2 gets [4, 5, 6].

should be

For example, let's assume the complete array is [1, 2, 4, 3, 5, 6], and there are two processes. Process 1 gets [1, 2, 4], and process 2 gets [3, 5, 6].

tonyyxliu commented 1 year ago

You are right, and thanks for pointing out! I have fixed this typo in the commit mentioned here.