CUDA Parallel Programming/Learn CUDA and Implementation with ANOVA
From CS486wiki
Learn CUDA and Implementation with ANOVA
Example 1
On this example bb.txt file is 23 MB and it contains total of 1649996 characters to be searched. Through CUDA I implement my search time as 184 ms. Related to size of the file efficient Block number is 4, and Thread number is 512. Also all found location of search string is stored in an Array for analyze further steps.
Example 2
This example shows that how a data divided into pieces to search the SearchString. Divided data is makes the improvement of string search rather than search on whole data, each code runs on divided data. On the example it finds the found number of strings in each piece of data.
Example 3
Example 4




