diff --git a/README.md b/README.md index 793f2b2..7e1d6b6 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,14 @@ 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) - -### (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.) - +* Yan Wu + * [LinkedIn](https://www.linkedin.com/in/yan-wu-a71270159/) +* Tested on: Windows 10, i7-8750H @ 2.20GHz 16GB, GTX 1060 6GB (Personal Laptop) +* [Repo Link](https://github.com/wuyan33/Project0-CUDA-Getting-Started.git) +* Screenshots + * Project result: + + * Performance Analysis Timeline: + + * CUDA debugging: CUDA info -> warp (index = 1045) + diff --git a/images/cudadebugger.PNG b/images/cudadebugger.PNG new file mode 100644 index 0000000..e4cfb65 Binary files /dev/null and b/images/cudadebugger.PNG differ diff --git a/images/timeline.PNG b/images/timeline.PNG new file mode 100644 index 0000000..9fa8072 Binary files /dev/null and b/images/timeline.PNG differ diff --git a/images/yanwu-1060.PNG b/images/yanwu-1060.PNG new file mode 100644 index 0000000..7f4ff20 Binary files /dev/null and b/images/yanwu-1060.PNG differ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b98ef96..e3c1bf9 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_60 ) diff --git a/src/main.cpp b/src/main.cpp index 886fd4c..74eeb1b 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 = "Yan Wu"; if (init(argc, argv)) { mainLoop();