diff --git a/README.md b/README.md index d2fa33d..ca7b447 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,30 @@ 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) +* Xinran Tao + * [LinkedIn](https://www.linkedin.com/in/xinran-tao/), [Personal Website](https://www.xinrantao.com/), [GitHub](https://github.com/theBoilingPoint). +* Tested on: + - Ubuntu 22.04, i7-11700K @ 3.60GHz × 16, RAM 32GB, GeForce RTX 3080 Ti 12GB (Personal) -### (TODO: Your README) +### Screenshots +#### Part 2.1.2: Modify the CUDA Project and Take a Screenshot +![](images/part_2.1.2.png) -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.3: Nsight Debugging +For this part, we are only required to attach screenshots for Windows according to `INSTRUCTION.md`. Nonetheless, I have attached the screenshot for reaching the breakpoint on my Linux system. + +![](images/part_2.1.3.png) + +#### Part 2.1.4: Nsight Systems +![](images/part_2.1.4_summary.png) +![](images/part_2.1.4_timeline.png) + +#### Part 2.1.5: Nsight Compute +![](images/part_2.1.5_details.png) +![](images/part_2.1.5_summary.png) + +#### Part 2.2: Project Instructions - WebGL +![](images/part_2.2.png) + +#### Part 2.3: Project Instructions - WebGPU +![](images/part_2.3.png) diff --git a/cuda-getting-started/.vscode/launch.json b/cuda-getting-started/.vscode/launch.json new file mode 100644 index 0000000..0060ffa --- /dev/null +++ b/cuda-getting-started/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "CUDA C++: Launch", + "type": "cuda-gdb", + "request": "launch", + "program": "${workspaceFolder}/build/bin/cis5650_getting_started" + } + ] +} \ No newline at end of file diff --git a/cuda-getting-started/logs/out.ncp-rep.ncu-rep b/cuda-getting-started/logs/out.ncp-rep.ncu-rep new file mode 100644 index 0000000..956d640 Binary files /dev/null and b/cuda-getting-started/logs/out.ncp-rep.ncu-rep differ diff --git a/cuda-getting-started/src/main.cpp b/cuda-getting-started/src/main.cpp index 886fd4c..e8dc57a 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 = "Xinran (Paulina) Tao"; if (init(argc, argv)) { mainLoop(); diff --git a/images/part_2.1.2.png b/images/part_2.1.2.png new file mode 100644 index 0000000..adc164d Binary files /dev/null and b/images/part_2.1.2.png differ diff --git a/images/part_2.1.3.png b/images/part_2.1.3.png new file mode 100644 index 0000000..294e76b Binary files /dev/null and b/images/part_2.1.3.png differ diff --git a/images/part_2.1.4_summary.png b/images/part_2.1.4_summary.png new file mode 100644 index 0000000..130cea1 Binary files /dev/null and b/images/part_2.1.4_summary.png differ diff --git a/images/part_2.1.4_timeline.png b/images/part_2.1.4_timeline.png new file mode 100644 index 0000000..19b96ad Binary files /dev/null and b/images/part_2.1.4_timeline.png differ diff --git a/images/part_2.1.5_details.png b/images/part_2.1.5_details.png new file mode 100644 index 0000000..c67f8ca Binary files /dev/null and b/images/part_2.1.5_details.png differ diff --git a/images/part_2.1.5_summary.png b/images/part_2.1.5_summary.png new file mode 100644 index 0000000..14a8649 Binary files /dev/null and b/images/part_2.1.5_summary.png differ diff --git a/images/part_2.2.png b/images/part_2.2.png new file mode 100644 index 0000000..c735e99 Binary files /dev/null and b/images/part_2.2.png differ diff --git a/images/part_2.3.png b/images/part_2.3.png new file mode 100644 index 0000000..b54d9aa Binary files /dev/null and b/images/part_2.3.png differ