diff --git a/README.md b/README.md index dd258af..7eb9a10 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,28 @@ Project 0 Getting Started **University of Pennsylvania, CIS 565: 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) +* Disha Jindal + * [Linkedin](https://www.linkedin.com/in/disha-jindal/) +* Tested on: Windows 10 Education, Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz 16GB, GTX 222 222MB (Moore 100B Lab) -### (TODO: Your README) +### Description of content in the images folder: +- **Part 2.2: WebGL; screenshot of first page of chrome:\\gpu** -Include screenshots, analysis, etc. (Remember, this is public, so don't put -anything here that you don't want to share with the world.) +![](https://github.com/DishaJindal/Project0-Getting-Started/blob/master/images/gpu-webgl-status.jpg) +- **Part 2.2: WebGL; entire output of chrome:\\gpu in pdf** + - [chrome-gpu-output](https://github.com/DishaJindal/Project0-Getting-Started/blob/master/images/gpu.pdf) + +- **Part 2.3: DXR** +I did my assignment using one of the computers in Moore 100B Lab. I couldn't run this part of the assignment there because developer mode was disabled and have sent an email to cets@ to see If it is possible to get the access. Also tried using SIG Lab computers, but couldn't log into any of the machines and couldn't find the password for SIG admin user. +- **Part 4: Modify; screenshot of the app window with my name in the title bar** +![](https://github.com/DishaJindal/Project0-Getting-Started/blob/master/images/modify-name.jpg) +- **Part 5: Analyze; screenshot of timeline from performance analysis** + +![](https://github.com/DishaJindal/Project0-Getting-Started/blob/master/images/performance-analysis.jpg) +- **Part 6: Nsight Debugging; screenshot of warp info from debugging** + +![](https://github.com/DishaJindal/Project0-Getting-Started/blob/master/images/debugging-warp-info.jpg) +- **Part 6: Nsight Debugging; screenshot of Autos window from debugging** + +![](https://github.com/DishaJindal/Project0-Getting-Started/blob/master/images/debugging-auto.jpg) diff --git a/cuda-getting-started/src/main.cpp b/cuda-getting-started/src/main.cpp index 886fd4c..1802765 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 = "Disha Jindal"; if (init(argc, argv)) { mainLoop(); diff --git a/images/debugging-auto.jpg b/images/debugging-auto.jpg new file mode 100644 index 0000000..1e7b1f0 Binary files /dev/null and b/images/debugging-auto.jpg differ diff --git a/images/debugging-warp-info.jpg b/images/debugging-warp-info.jpg new file mode 100644 index 0000000..e7aa3c7 Binary files /dev/null and b/images/debugging-warp-info.jpg differ diff --git a/images/gpu-webgl-status.jpg b/images/gpu-webgl-status.jpg new file mode 100644 index 0000000..978bf62 Binary files /dev/null and b/images/gpu-webgl-status.jpg differ diff --git a/images/gpu.pdf b/images/gpu.pdf new file mode 100644 index 0000000..55e88dc Binary files /dev/null and b/images/gpu.pdf differ diff --git a/images/modify-name.jpg b/images/modify-name.jpg new file mode 100644 index 0000000..e79695e Binary files /dev/null and b/images/modify-name.jpg differ diff --git a/images/performance-analysis.jpg b/images/performance-analysis.jpg new file mode 100644 index 0000000..7f1852c Binary files /dev/null and b/images/performance-analysis.jpg differ