Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Chapters/Ch02 - Data Parallel Computing/exercises/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Each thread calculates 2 elements so the number of elements processed by the pre
**Correct answer:** C

```
ceil(8000/1024) = 4 blocks
4 blocks * 1024 threads per blocks = 8192 threads
ceil(8000/1024) = 8 blocks
8 blocks * 1024 threads per blocks = 8192 threads
```

---
Expand Down Expand Up @@ -124,4 +124,4 @@ __host__ __device__ function_return_type function_name(...)
{
...
}
```
```