diff --git a/README.md b/README.md index 793f2b2..3e4c1f4 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,33 @@ 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.) +* Jie Meng + + * [LinkedIn](https://www.linkedin.com/in/jie-meng/), [twitter](https://twitter.com/JieMeng6). + +* Tested on: Windows 10, i7-7700HQ @ 2.80GHz, 16GB, GTX 1050 2GB (My personal laptop) + + + +### (Screenshots) + + +* Sceenshot on running result + + +![](images/1.png) + +* Sceenshots on analysis timeline + + +![](images/2.png) +![](images/3.png) +* Sceenshot on CUDA Debugging, the index is set to 2000 +![](images/4.png) diff --git a/images/1.png b/images/1.png new file mode 100644 index 0000000..82fbb20 Binary files /dev/null and b/images/1.png differ diff --git a/images/2.png b/images/2.png new file mode 100644 index 0000000..076b9a1 Binary files /dev/null and b/images/2.png differ diff --git a/images/3.png b/images/3.png new file mode 100644 index 0000000..7c0045c Binary files /dev/null and b/images/3.png differ diff --git a/images/4.png b/images/4.png new file mode 100644 index 0000000..3cb7507 Binary files /dev/null and b/images/4.png differ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b98ef96..b6c9611 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -3,6 +3,8 @@ set(SOURCE_FILES "glslUtility.cpp" "kernel.h" "kernel.cu" + "main.hpp" + "main.cpp" ) cuda_add_library(src diff --git a/src/main.cpp b/src/main.cpp index 886fd4c..6e81800 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 = "Jie Meng"; if (init(argc, argv)) { mainLoop();