diff --git a/.cproject b/.cproject index d2e4440..6c3e32a 100644 --- a/.cproject +++ b/.cproject @@ -1,7 +1,5 @@ - - - + @@ -19,11 +17,11 @@ - + - + + + + + 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..cb8502f 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,21 @@ 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) +* Mohamed Soudy +* Tested on: Windows 10 Enterprise, i7 @ 2.7 GHz 16GB, GT 650M 1024 MB -### (TODO: Your README) +Screenshots +==================== + +![](images/title_name.png) + + +![](images/timeline.png) -Include screenshots, analysis, etc. (Remember, this is public, so don't put -anything here that you don't want to share with the world.) +![](images/autos_cuda_info1.png) + +CMakeList Edits +==================== + +Changed line 69 in CMakeLists.txt from find_package(CUDA 8.0 REQUIRED) to find_package(CUDA REQUIRED). \ No newline at end of file diff --git a/images/autos_cuda_info1.png b/images/autos_cuda_info1.png new file mode 100644 index 0000000..d7202bc Binary files /dev/null and b/images/autos_cuda_info1.png differ diff --git a/images/timeline.png b/images/timeline.png new file mode 100644 index 0000000..54d4794 Binary files /dev/null and b/images/timeline.png differ diff --git a/images/title_name.png b/images/title_name.png new file mode 100644 index 0000000..d27e6ff Binary files /dev/null and b/images/title_name.png differ diff --git a/src/main.cpp b/src/main.cpp index 886fd4c..986da9f 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 = "Mohamed Soudy"; if (init(argc, argv)) { mainLoop();