diff --git a/README.md b/README.md index dd258af..70820c2 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,26 @@ 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) +* Paul (San) Jewell + * [LinkedIn](https://www.linkedin.com/in/paul-jewell-2aba7379), [work website]( + https://www.biociphers.org/paul-jewell-lab-member), [personal website](https://gitlab.com/inklabapp), [twitter](https://twitter.com/inklabapp), etc. +* Tested on: (Personal machine) Linux pop-os 5.11.0-7614-generic, i7-9750H CPU @ 2.60GHz 32GB, GeForce GTX 1650 Mobile / Max-Q 4GB -### (TODO: Your README) +### Results -Include screenshots, analysis, etc. (Remember, this is public, so don't put -anything here that you don't want to share with the world.) +Program running +![](images/window.png) +Eclipse timeline +![](images/timeline.png) + +No instructions were provided for linux debugging screenshots, so here is one of a breakpoint in use +![](images/debug.png) + +Web GL 1 +![](images/webgl1.png) + +Web GL 2 +![](images/webgl2.png) + +yay~ diff --git a/cuda-getting-started/src/main.cpp b/cuda-getting-started/src/main.cpp index 886fd4c..df01acd 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 = "Paul (San) Jewell"; if (init(argc, argv)) { mainLoop(); diff --git a/images/debug.png b/images/debug.png new file mode 100644 index 0000000..e3ed11c Binary files /dev/null and b/images/debug.png differ diff --git a/images/timeline.png b/images/timeline.png new file mode 100644 index 0000000..0f77a28 Binary files /dev/null and b/images/timeline.png differ diff --git a/images/webgl1.png b/images/webgl1.png new file mode 100644 index 0000000..9f28356 Binary files /dev/null and b/images/webgl1.png differ diff --git a/images/webgl2.png b/images/webgl2.png new file mode 100644 index 0000000..d08d8fd Binary files /dev/null and b/images/webgl2.png differ diff --git a/images/window.png b/images/window.png new file mode 100644 index 0000000..8f7a958 Binary files /dev/null and b/images/window.png differ