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: Matt Elser #10

Open
wants to merge 7 commits into
base: main
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
38 changes: 32 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,38 @@ 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)
* Matt Elser
* [LinkedIn](https://www.linkedin.com/in/matt-elser-97b8151ba/)
* Tested on: Ubuntu 20.04, i3-10100F @ 3.6GHz 16GB, GeForce 1660 Super 6GB

### (TODO: Your README)
## Results v2
This was previously completed on a Moore lab machine (see README in
[v1](https://github.com/mattelser/Project0-Getting-Started/tree/e4d7c4977a13c450ca0db52ff8e1ea44a6f5f6d7)),
however it seemed prudent to re-do it with a personal machine. Other than being easier to access
logistically, having admin privileges has enabled performance analysis.

### ✅ run main.cpp
This output indicates the major/minor compute capability of the device, converting this data
to colors and displaying them on the screen. Cyan indicates 7, Green indicates 4|5. The image
is calculated using a kernel, so the display of it indicates a successful utilization of the device.

![main.cpp output](images/step_3_1_1_screenshot.png)
### ✅ performance Analysis
There is a known issue on the CETS machines preventing performance analysis from running.
The fix requires privileges beyond those provided in order to install additional developer
tools.

![sad mac from wikimedia commons](images/step3_1_2_visual_profiler.png)
### ✅ Nsight debugging
Here the debugger is halted based on a given conditional (`index` is a specified value)

![debugger example](images/step3_1_3_screenshot.png)

### ✅ webGL verification
chrome confirms webGL is supported.
![webGL verification](images/webGL_verification.png)

### ❌ DirectX RayTracing
Linux lacks support for DirectX.

Include screenshots, analysis, etc. (Remember, this is public, so don't put
anything here that you don't want to share with the world.)

3 changes: 1 addition & 2 deletions cuda-getting-started/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "Matt Elser";

if (init(argc, argv)) {
mainLoop();
Expand Down
Binary file added images/Sad_mac.jpeg
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/step3_1_2_visual_profiler.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/step3_1_3_screenshot.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/step_3_1_1_screenshot.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/webGL_verification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.