diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f3e9f8..a1214b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,7 @@ endif() # Crucial magic for CUDA linking find_package(Threads REQUIRED) -find_package(CUDA 8.0 REQUIRED) +find_package(CUDA REQUIRED) set(CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE ON) set(CUDA_SEPARABLE_COMPILATION ON) diff --git a/README.md b/README.md index fd52a04..6a3a312 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,23 @@ Project 0 CUDA Getting Started **University of Pennsylvania, CIS 565: GPU Programming and Architecture, Project 0** -* (TODO) YOUR NAME HERE -* Tested on: (TODO) Windows 22, i7-2222 @ 2.22GHz 22GB, GTX 222 222MB (Moore 2222 Lab) +* Mariano Merchante +* Tested on + * Microsoft Windows 10 Pro + * Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz, 2601 Mhz, 4 Core(s), 8 Logical Processor(s) + * 32.0 GB RAM + * NVIDIA GeForce GTX 1070 (mobile version) -### (TODO: Your README) +## Details -Include screenshots, analysis, etc. (Remember, this is public, so don't put -anything here that you don't want to share with the world.) +A simple project setup excercise for CUDA development. Had a lot of issues with CMake and VS, because I had a broken installation of VS 2017 RC before. + +The project running +![](images/part4.png) + +Timeline +![](images/part5.png) + +The debugger running with a conditional breakpoint of index == 1337 +![](images/part7.png) diff --git a/images/part4.png b/images/part4.png new file mode 100644 index 0000000..e5a4a1b Binary files /dev/null and b/images/part4.png differ diff --git a/images/part5.png b/images/part5.png new file mode 100644 index 0000000..4b043e4 Binary files /dev/null and b/images/part5.png differ diff --git a/images/part7.png b/images/part7.png new file mode 100644 index 0000000..5655aad Binary files /dev/null and b/images/part7.png differ diff --git a/src/main.cpp b/src/main.cpp index 886fd4c..49232a5 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 = "Mariano Merchante"; if (init(argc, argv)) { mainLoop();