diff --git a/README.md b/README.md index 793f2b2..7acfc89 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,20 @@ Project 0 CUDA 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) +* Liam Dugan + * [LinkedIn](https://www.linkedin.com/in/liam-dugan-95a961135/), [personal website](http://liamdugan.com/) +* Tested on: Windows 10, Ryzen 5 1600 @ 3.20GHz 16GB, GTX 1070 16GB (Personal Computer) -### (TODO: Your README) +## Screenshots -Include screenshots, analysis, etc. (Remember, this is public, so don't put -anything here that you don't want to share with the world.) +### Output: +![](images/Output.PNG) +### Timeline: +![](images/Timeline.PNG) + +### Debug Breakpoint Output: +![](images/AutosAndCUDAInfo.PNG) + +## Notes +I did have to edit the CMakeLists.txt to include sm_60 instead of sm_20 since my GPU is Compute Capability 6.1 diff --git a/images/AutosAndCUDAInfo.PNG b/images/AutosAndCUDAInfo.PNG new file mode 100644 index 0000000..1f68562 Binary files /dev/null and b/images/AutosAndCUDAInfo.PNG differ diff --git a/images/Output.PNG b/images/Output.PNG new file mode 100644 index 0000000..a720c9f Binary files /dev/null and b/images/Output.PNG differ diff --git a/images/Timeline.PNG b/images/Timeline.PNG new file mode 100644 index 0000000..151c315 Binary files /dev/null and b/images/Timeline.PNG differ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b98ef96..e3c1bf9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -7,5 +7,5 @@ set(SOURCE_FILES cuda_add_library(src ${SOURCE_FILES} - OPTIONS -arch=sm_20 + OPTIONS -arch=sm_60 ) diff --git a/src/main.cpp b/src/main.cpp index 886fd4c..4079c2e 100644 --- a/src/main.cpp +++ b/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 = "LIAM DUGAN"; if (init(argc, argv)) { mainLoop();