diff --git a/README.md b/README.md index d2fa33d..51f168f 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,28 @@ 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) +* Kyle Bauer + * [LinkedIn](https://www.linkedin.com/in/kyle-bauer-75bb25171/), [personal website](), [twitter](https://x.com/KyleBauer414346), etc. +* Tested on: Ubuntu 24.04, AMD Ryzen 5 5600G @ 3.9GHz 16GB, GeForce GTX 1070 8GB -### (TODO: Your README) +Part 2.1.2 -Include screenshots, analysis, etc. (Remember, this is public, so don't put -anything here that you don't want to share with the world.) +![](images/2-1-2.png) + +Part 2.1.4 + +![](images/2-1-3_AnalysisSummary.png) + +![](images/2-1-3_Timeline.png) + +Part 2.1.5 + +Nsight Compute does not support Nvidia 10 Series GPUs' Pascal architecture. Waiting for response on [CETS Virtual Lab computers](https://github.com/kbau121-seas/Project0-Getting-Started/tree/CETS) permissions. [(Related Issue)](https://edstem.org/us/courses/60839/discussion/5194387) + +Part 2.2 + +![](images/2-2.png) + +Part 2.3 + +![](images/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/src/main.cpp b/cuda-getting-started/src/main.cpp index 886fd4c..eb6e194 100644 --- a/cuda-getting-started/src/main.cpp +++ b/cuda-getting-started/src/main.cpp @@ -10,8 +10,7 @@ * C main function. */ int main(int argc, char* argv[]) { - // TODO: Change this line to use your name! - m_yourName = "TODO: YOUR NAME HERE"; + m_yourName = "Kyle Bauer"; if (init(argc, argv)) { mainLoop(); diff --git a/images/2-1-2.png b/images/2-1-2.png new file mode 100644 index 0000000..3c2e2d3 Binary files /dev/null and b/images/2-1-2.png differ diff --git a/images/2-1-3_AnalysisSummary.png b/images/2-1-3_AnalysisSummary.png new file mode 100644 index 0000000..cf053a6 Binary files /dev/null and b/images/2-1-3_AnalysisSummary.png differ diff --git a/images/2-1-3_Timeline.png b/images/2-1-3_Timeline.png new file mode 100644 index 0000000..3c395a7 Binary files /dev/null and b/images/2-1-3_Timeline.png differ diff --git a/images/2-2.png b/images/2-2.png new file mode 100644 index 0000000..79a6723 Binary files /dev/null and b/images/2-2.png differ diff --git a/images/2-3.png b/images/2-3.png new file mode 100644 index 0000000..d6acc0f Binary files /dev/null and b/images/2-3.png differ