Changes

Jump to: navigation, search

GPU621/Analyzing False Sharing

2 bytes added, 14:35, 4 December 2022
False sharing example
}
In this program code, we can see that at the beginning of the main function we declare a vector numbers and initialize it from 0 to 10010000. We can also see in the main function that the code is divided into two main blocks. The first block is the Thread block, which is executed concurrently using multiple threads. While the second block is the Serial block, it is executed concurrently using normal serial logic.
The main purpose of the sumUp function is to calculate the sum of odd elements or even elements based on the data in the first vector argument in the argument list. Also, the sum will be recorded in the corresponding position of the second vector argument using the int argument as the index.
118
edits

Navigation menu