Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project 0: Angelina Risi #44

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.1)

project(cis565_getting_started)

Expand Down
7 changes: 6 additions & 1 deletion INSTRUCTION.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Project 0 CUDA Getting Started: Instructions
========================

This is due **Friday, September 1 2017**. (See [late policy](#late-policy) at the bottom)
This is due **Friday, August 31st 2018**. (See [late policy](#late-policy) at the bottom)

**Summary:** In this project, you will set up your CUDA development tools and
verify that you can build, run, and do performance analysis.
Expand All @@ -26,6 +26,11 @@ machine with these specs, you may use computers in the Moore or SIG Labs.

Skip this part if you are developing on a lab computer.

#### Notes
- Before you get started: if you have multiple VS code and/or CMake versions, you will probably run into trouble. Either uninstall extra versions (if possible) or ensure that the correct VSCode (or XCode) and CMake versions are being chosen.
- If you are running into a lot of trouble, a clean installation of VS Code (or XCode), CMake, and CUDA can help fix any problems if other methods don't work.
- If you have driver issues or random crashing: uninstalling and reinstalling drivers usually works

### Windows

1. Make sure you are running Windows 7/8/10 and that your NVIDIA drivers are
Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@ 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)
* Angelina Risi
* [LinkedIn](www.linkedin.com/in/angelina-risi)
* Tested on: Windows 10, i7-6700HQ @ 2.60GHz 8GB, GTX 960M 4096MB (Personal Laptop)

### (TODO: Your README)

Include screenshots, analysis, etc. (Remember, this is public, so don't put
anything here that you don't want to share with the world.)
Screenshot of project running correctly:
![Built and Running](/images/screenshot.PNG)

When attempting to run the performance analysis, the project would run successfully and I'd close it as per instructions, but then the analysis window would claim "0.0 seconds captured" and I'd be unable to see the timeline. I was unable to resolve the problem and did not make it to office hours yet, but will try to come in on Tuesday's office hours.
Screenshot of Perforamnce Analysis refusing to capture and generate timeline:
![Performance Analysis - experiencing issues](/images/Performance_Analysis.PNG)

The CUDA Debugger functioning correctly:
![CUDA Debugger](/images/CUDA_Debug.PNG)
Empty file removed images/.gitignore
Empty file.
Binary file added images/CUDA_Debug.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Performance_Analysis.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshot.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "Angelina Risi";

if (init(argc, argv)) {
mainLoop();
Expand Down