diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3543521 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/build diff --git a/README.md b/README.md index d2fa33d..4b323d5 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) +* Sirui Zhu + * [LinkedIn](https://www.linkedin.com/in/sirui-zhu-28a24a260/) +* Tested on: Windows 11, i7-13620H, RTX 4060 (Personal) -### (TODO: Your README) +## Compute Capability -Include screenshots, analysis, etc. (Remember, this is public, so don't put -anything here that you don't want to share with the world.) +Compute Capability: 8.9 + +## Screenshots + +### CUDA GL Check Window +![](images/Window.png) + +### Nsight Debugging +![](images/NSightDebugging.png) + +### Nsight Systems +![](images/NSightSystems.png) + +### Nsight Compute +![](images/NSightCompute.png) + +### WebGL Report +![](images/WebGL.png) + +### WebGPU Report +![](images/WebGPU.png) diff --git a/cuda-gl-check/src/main.cpp b/cuda-gl-check/src/main.cpp index 886fd4c..7dc93b2 100644 --- a/cuda-gl-check/src/main.cpp +++ b/cuda-gl-check/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 = "Sirui Zhu"; if (init(argc, argv)) { mainLoop(); diff --git a/images/NSightCompute.png b/images/NSightCompute.png new file mode 100644 index 0000000..b80fb8a Binary files /dev/null and b/images/NSightCompute.png differ diff --git a/images/NSightDebugging.png b/images/NSightDebugging.png new file mode 100644 index 0000000..fd0135e Binary files /dev/null and b/images/NSightDebugging.png differ diff --git a/images/NSightSystems.png b/images/NSightSystems.png new file mode 100644 index 0000000..5be96ce Binary files /dev/null and b/images/NSightSystems.png differ diff --git a/images/WebGL.png b/images/WebGL.png new file mode 100644 index 0000000..21b60c9 Binary files /dev/null and b/images/WebGL.png differ diff --git a/images/WebGPU.png b/images/WebGPU.png new file mode 100644 index 0000000..16c2166 Binary files /dev/null and b/images/WebGPU.png differ diff --git a/images/Window.png b/images/Window.png new file mode 100644 index 0000000..beddc7c Binary files /dev/null and b/images/Window.png differ