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: Chhavi Sharma #20

Open
wants to merge 8 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
63 changes: 57 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,63 @@ 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)
* Author: Chhavi Sharma
* [LinkedIn](https://www.linkedin.com/in/chhavi275/), [personal website](https://www.grasp.upenn.edu/people/chhavi-sharma), [twitter](), etc.
* Tested on: Windows 10, Intel Xeon CPU E5-2687W v3 @ 3.10GHz 22GB, NVIDIA TITAN V 12GB (SIGLab-VR1)

### (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.)
### README
Summary: In this project, we setup GPU development tools and verify that we can build, run, and do performance analysis.

#### Part 1: Fork & Clone

#### Part 2: Set up development environment

#### Part 2.0: Integrated Development Environment

SYSTEM : Windows 10, Intel Xeon CPU E5-2687W v3 @ 3.10GHz 22GB, NVIDIA TITAN V 12GB (SIGLab-VR1)
CMAKE : CMAKE 3.14.6
GPU : NVIDIA TITAN V (compute capability = 7.0)


#### Part 2.1: CUDA
CUDA : CUDA 10.0


#### Part 2.2: WebGL

Google Chrome WebGL support: Enabling WebGL
Checking WebGL status - chrome://gpu
![WebGL status](/images/Chrome3.png)

#### Part 2.3: DXR
Skipped due to unsupported GPU.



#### Part 3: Build & Run

cuda-getting-started/src/ - source code.
cuda-getting-started/external/ - Windows binaries and headers for GLEW and GLFW.

cmake-build to generate cis565_getting_started.sln
open sln in VS2017
Build.
Run.



#### Part 4: Modify
![Visual Studio Run](/images/output.png)



#### Part 5: Analyze
![Nsight Performance Analysis](/images/performance.png)



#### Part 6: Nsight Debugging
index == 1278
![Nsight debugger](/images/warpinfo.png)

179 changes: 179 additions & 0 deletions cuda-getting-started/build/ALL_BUILD.vcxproj

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions cuda-getting-started/build/ALL_BUILD.vcxproj.filters
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<CustomBuild Include="D:\ChhaviSharma\Project0-Getting-Started\cuda-getting-started\CMakeLists.txt" />
</ItemGroup>
<ItemGroup>
</ItemGroup>
</Project>
4 changes: 4 additions & 0 deletions cuda-getting-started/build/ALL_BUILD.vcxproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
</Project>
Loading