diff --git a/README.md b/README.md index d2fa33d..f1f7c74 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,32 @@ Project 0 Getting Started **University of Pennsylvania, CIS 5650: 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) +* Yifan Lu + * [LinkedIn](https://www.linkedin.com/in/yifan-lu-495559231/), [personal website](http://portfolio.samielouse.icu/) +* Tested on: Windows 11, AMD Ryzen 7 5800H 3.20 GHz, Nvidia GeForce RTX 3060 Laptop GPU (Personal Laptop) -### (TODO: Your README) +## Project0 Screenshots Include screenshots, analysis, etc. (Remember, this is public, so don't put anything here that you don't want to share with the world.) + +#### 1. CUDA Running Screenshot +![](images/1.png) + +#### 2. Nsight Visual Studio Profile Screenshots +![](images/warpInfo.png) +![](images/auto.png) + +#### 3. Nsight Systems +![](images/systems_analysisSummary.png) +![](images/systems_timeLine.png) + +#### 4. Nsight Compute +![](images/compute_summary.png) +![](images/compute_details.png) + +#### 5. WebGL +![](images/WebGLSupport.png) + +#### 6. WebGPU +![](images/webGPU.png) diff --git a/cuda-getting-started/src/main.cpp b/cuda-getting-started/src/main.cpp index 886fd4c..71e3257 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 = "Yifan Lu"; if (init(argc, argv)) { mainLoop(); diff --git a/images/1.png b/images/1.png new file mode 100644 index 0000000..4fdd46c Binary files /dev/null and b/images/1.png differ diff --git a/images/WebGLSupport.png b/images/WebGLSupport.png new file mode 100644 index 0000000..91a981e Binary files /dev/null and b/images/WebGLSupport.png differ diff --git a/images/auto.png b/images/auto.png new file mode 100644 index 0000000..6dae280 Binary files /dev/null and b/images/auto.png differ diff --git a/images/compute_details.png b/images/compute_details.png new file mode 100644 index 0000000..db902a6 Binary files /dev/null and b/images/compute_details.png differ diff --git a/images/compute_summary.png b/images/compute_summary.png new file mode 100644 index 0000000..9b69320 Binary files /dev/null and b/images/compute_summary.png differ diff --git a/images/systems_analysisSummary.png b/images/systems_analysisSummary.png new file mode 100644 index 0000000..0fe8c4e Binary files /dev/null and b/images/systems_analysisSummary.png differ diff --git a/images/systems_timeLine.png b/images/systems_timeLine.png new file mode 100644 index 0000000..15e11b7 Binary files /dev/null and b/images/systems_timeLine.png differ diff --git a/images/warpInfo.png b/images/warpInfo.png new file mode 100644 index 0000000..0842707 Binary files /dev/null and b/images/warpInfo.png differ diff --git a/images/webGPU.png b/images/webGPU.png new file mode 100644 index 0000000..270e73f Binary files /dev/null and b/images/webGPU.png differ