diff --git a/README.md b/README.md index dd258af..d5713a6 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,25 @@ 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) +* Zheyuan Xie + * [LinkedIn](https://www.linkedin.com/in/zheyuan-xie) + * [Github](https://github.com/ZheyuanXie) + * [Personal Website](http://errorspace.cn) +* Tested on: Windows 10 Pro, i7-7700HQ @ 2.80GHz 2.80GHz, 16GB, GTX 1050 2GB (XPS15 9560) -### (TODO: Your README) +### Part 2.2: WebGL +![WebGL Status Report](images/webgl.PNG) + - WebGL: Hardware accelerated + - WebGL2: Hardware accelerated -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.3: DXR +![Modified Triangle](images/dxr.PNG) + - R: 0.5, G: 0.5, B: 0.5 + - The title bar indicates the machine is using the provided Fallback layer to emulate realtime raytracing with GPU compute cores. +### Part 5: Analyze +![Timeline](images/timeline.PNG) + +### Part 6: Nsight Debugging +![Warp Info](images/debug.PNG) + - Condition: `index == 5555` diff --git a/cuda-getting-started/src/main.cpp b/cuda-getting-started/src/main.cpp index 886fd4c..19b234f 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 = "Zheyuan Xie"; if (init(argc, argv)) { mainLoop(); diff --git a/images/debug.PNG b/images/debug.PNG new file mode 100644 index 0000000..e5b1850 Binary files /dev/null and b/images/debug.PNG differ diff --git a/images/dxr.PNG b/images/dxr.PNG new file mode 100644 index 0000000..cc9504b Binary files /dev/null and b/images/dxr.PNG differ diff --git a/images/name.PNG b/images/name.PNG new file mode 100644 index 0000000..65e0fb6 Binary files /dev/null and b/images/name.PNG differ diff --git a/images/timeline.PNG b/images/timeline.PNG new file mode 100644 index 0000000..3665187 Binary files /dev/null and b/images/timeline.PNG differ diff --git a/images/webgl.PNG b/images/webgl.PNG new file mode 100644 index 0000000..66bf7ea Binary files /dev/null and b/images/webgl.PNG differ