diff --git a/README.md b/README.md index dd258af..8661882 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,39 @@ 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) +* Yian Chen + * [LinkedIn](https://www.linkedin.com/in/yian-chen-33a31a1a8/), [personal website](https://sydianandrewchen.github.io/) etc. +* Tested on: Windows 10, i5-8250U CPU @ 1.60GHz 8GB, NVIDIA GeForce MX150 6GB -### (TODO: Your README) +## Part 3.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.) +- GPU: NVIDIA GeForce MX150 6GB +- Compute Capability: 6.1 + > Note: It appears that MX150 is not listed in the [link](https://developer.nvidia.com/cuda-gpus). The shown `sm` is proposed according to [this post](https://forums.developer.nvidia.com/t/which-version-of-cuda-is-compatible-with-nvidia-mx-150/74400). + +### 3.1.1 + +- Screenshot of the window: + ![](./images/win_with_my_name_as_title.png) + + +### 3.1.2 + +- Screenshot of the nsight timeline: + ![](./images/nsight-timeline.png) + +### 3.1.3 + +- Screenshot of the nsight debugging: + ![](./images/nsight-debug.png) + +## Part 3.2 + +- Screenshot of `chrome://gpu`: + ![](./images/chrome-gpu-settings.png) + +## Part 3.3 + +- Screenshot of DXR check & modified triangle: + ![](./images/modified_triangle.png) diff --git a/cuda-getting-started/src/main.cpp b/cuda-getting-started/src/main.cpp index 886fd4c..b4fecd7 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 = "Yian Chen"; if (init(argc, argv)) { mainLoop(); diff --git a/images/chrome-gpu-settings.png b/images/chrome-gpu-settings.png new file mode 100644 index 0000000..aa71e55 Binary files /dev/null and b/images/chrome-gpu-settings.png differ diff --git a/images/nsight-debug.png b/images/nsight-debug.png new file mode 100644 index 0000000..6a6ac23 Binary files /dev/null and b/images/nsight-debug.png differ diff --git a/images/nsight-timeline.png b/images/nsight-timeline.png new file mode 100644 index 0000000..701effd Binary files /dev/null and b/images/nsight-timeline.png differ diff --git a/images/win_with_my_name_as_title.png b/images/win_with_my_name_as_title.png new file mode 100644 index 0000000..f3907d4 Binary files /dev/null and b/images/win_with_my_name_as_title.png differ