Created
October 23, 2018 02:02
-
-
Save rharriso/412ce750751d607ec3649454646c57a5 to your computer and use it in GitHub Desktop.
init pixel counts thrust
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const int PIXEL_COUNT = 500 * 500; | |
auto pixelCounts = thrust::device_vector<unsigned int>(PIXEL_COUNT); | |
thrust::fill(pixelCounts.begin(), pixelCounts.end(), 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment