diff --git a/README.md b/README.md index dd258af..006c3f7 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,27 @@ Project 0 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) +* Weiqi Chen + LinkedIn: https://www.linkedin.com/in/weiqi-ricky-chen-2b04b2ab/ -### (TODO: Your README) +* Tested on personal computer: Windows 10, i7-8750 @ 2.21GHz 16GB, GTX 1050 Compute Capability 6.1 -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 + +Working OpenGL + +![](images/webgl.png) + + +Modification Test + +![](images/1.png) + +Analysis + +![](images/analysis.png) + +Nsight Debugging Test + +![](images/info.png) diff --git a/cuda-getting-started/src/main.cpp b/cuda-getting-started/src/main.cpp index 886fd4c..57449ae 100644 --- a/cuda-getting-started/src/main.cpp +++ b/cuda-getting-started/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 = "Weiqi Chen"; if (init(argc, argv)) { mainLoop(); diff --git a/images/1.png b/images/1.png new file mode 100644 index 0000000..2d66ca5 Binary files /dev/null and b/images/1.png differ diff --git a/images/analysis.png b/images/analysis.png new file mode 100644 index 0000000..daf5865 Binary files /dev/null and b/images/analysis.png differ diff --git a/images/info.png b/images/info.png new file mode 100644 index 0000000..81eaedb Binary files /dev/null and b/images/info.png differ diff --git a/images/webgl.png b/images/webgl.png new file mode 100644 index 0000000..a999654 Binary files /dev/null and b/images/webgl.png differ