diff --git a/README.md b/README.md index 793f2b2..f1505ea 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,26 @@ Project 0 CUDA Getting Started **University of Pennsylvania, CIS 565: GPU Programming and Architecture, Project 0** -* (TODO) YOUR NAME HERE - * (TODO) [LinkedIn](), [personal website](), [twitter](), etc. -* Tested on: (TODO) Windows 22, i7-2222 @ 2.22GHz 22GB, GTX 222 222MB (Moore 2222 Lab) +* Yichen Shou + * [LinkedIn](https://www.linkedin.com/in/yichen-shou-68023455/), [personal website](http://www.yichenshou.com/) +* Tested on: Windows 10, i7-6500U @ 2.50GHz 12GB RAM, GeForce 940M 8GB (Personal Laptop) -### (TODO: Your README) -Include screenshots, analysis, etc. (Remember, this is public, so don't put -anything here that you don't want to share with the world.) +## Screenshots +### Initial ScreenShot +![](images/initial.PNG) +### NSight Timeline +![](images/NSightTimeline.PNG) + +### CUDA Debugger +![](images/autosAndWraps.PNG) + + +## Comments + +* Compiled and Built using VS2015 and CUDA 8.0 +* Changed "src/CMAKELIST.txt" + * from "OPTIONS -arch=sm_20" to "OPTIONS -arch=sm_50" + * "sm_50" corresponds to my GPU's 5.0 compute capability + * Thanks to Bowen Yang on the course Google group for suggesting this change. \ No newline at end of file diff --git a/images/NSightTimeline.PNG b/images/NSightTimeline.PNG new file mode 100644 index 0000000..367d35d Binary files /dev/null and b/images/NSightTimeline.PNG differ diff --git a/images/autosAndWraps.PNG b/images/autosAndWraps.PNG new file mode 100644 index 0000000..9b280e1 Binary files /dev/null and b/images/autosAndWraps.PNG differ diff --git a/images/initial.PNG b/images/initial.PNG new file mode 100644 index 0000000..d3b1839 Binary files /dev/null and b/images/initial.PNG differ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b98ef96..57c6787 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -7,5 +7,5 @@ set(SOURCE_FILES cuda_add_library(src ${SOURCE_FILES} - OPTIONS -arch=sm_20 + OPTIONS -arch=sm_50 ) diff --git a/src/main.cpp b/src/main.cpp index 886fd4c..ba7bbb6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -11,7 +11,7 @@ */ int main(int argc, char* argv[]) { // TODO: Change this line to use your name! - m_yourName = "TODO: YOUR NAME HERE"; + m_yourName = "Yichen Shou"; if (init(argc, argv)) { mainLoop();