diff --git a/README.md b/README.md index d2fa33d..1b32db6 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,33 @@ 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) +* Zixiao Wang + * [LinkedIn](https://www.linkedin.com/in/zixiao-wang-826a5a255/) +* Tested on: Windows 11, i7-14700K @ 3.40 GHz 32GB, GTX 4070TI 12GB (Personal PC) -### (TODO: Your README) +### Output images of testing result -Include screenshots, analysis, etc. (Remember, this is public, so don't put -anything here that you don't want to share with the world.) +Part 2.1.2 Part 2.1.2: Modify the CUDA Project +![](images/test_run.png) + +Part 2.1.3: Nsight Debugging +![](images/CUDAdebugger.png) + +Part 2.1.4: Nsight Systems +![](images/NS_summary.png) +![](images/NS_timeline.png) + + +Part 2.1.5: Nsight Compute +![](images/NS_compute.png) +![](images/NS_compute_2.png) + + +Part 2.2: WebGL Report + +![](images/WebGL_report.png) + +Part 2.3: WebGPU report and sample instance + +![](images/WebGPU_report.png) +![](images/WebGPU_instance.png) diff --git a/cuda-getting-started/src/main.cpp b/cuda-getting-started/src/main.cpp index 886fd4c..4c2ad9a 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 = "Zixiao Wang"; if (init(argc, argv)) { mainLoop(); diff --git a/images/CUDAdebugger.png b/images/CUDAdebugger.png new file mode 100644 index 0000000..62124fd Binary files /dev/null and b/images/CUDAdebugger.png differ diff --git a/images/NS_compute.png b/images/NS_compute.png new file mode 100644 index 0000000..4f3fe98 Binary files /dev/null and b/images/NS_compute.png differ diff --git a/images/NS_compute_2.png b/images/NS_compute_2.png new file mode 100644 index 0000000..c0bb09e Binary files /dev/null and b/images/NS_compute_2.png differ diff --git a/images/NS_summary.png b/images/NS_summary.png new file mode 100644 index 0000000..d0b987b Binary files /dev/null and b/images/NS_summary.png differ diff --git a/images/NS_timeline.png b/images/NS_timeline.png new file mode 100644 index 0000000..634af08 Binary files /dev/null and b/images/NS_timeline.png differ diff --git a/images/WebGL_report.png b/images/WebGL_report.png new file mode 100644 index 0000000..7cc3c3b Binary files /dev/null and b/images/WebGL_report.png differ diff --git a/images/WebGPU_instance.png b/images/WebGPU_instance.png new file mode 100644 index 0000000..c378c1e Binary files /dev/null and b/images/WebGPU_instance.png differ diff --git a/images/WebGPU_report.png b/images/WebGPU_report.png new file mode 100644 index 0000000..5e35197 Binary files /dev/null and b/images/WebGPU_report.png differ diff --git a/images/test_run.png b/images/test_run.png new file mode 100644 index 0000000..ee5e983 Binary files /dev/null and b/images/test_run.png differ