Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.vs/
33 changes: 27 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,32 @@ Project 0 Getting Started

**University of Pennsylvania, CIS 5650: 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)
* Hongyi Ding
* [LinkedIn](https://www.linkedin.com/in/hongyi-ding/), [personal website](https://johnnyding.com/)
* Tested on: Windows 11, i7-12700 @ 2.10GHz 32GB, NVIDIA T1000 4GB (SEAS Virtual Lab)

### (TODO: Your README)
### Screenshots

Include screenshots, analysis, etc. (Remember, this is public, so don't put
anything here that you don't want to share with the world.)
notes: vLab PCs limit user's permission on software installation and some NVIDIA debug features. Thanks to CETS, they added CMake support upon my request. However, Nsight Systems and Nsight Computes still can't work.

#### Test program and Nsight debugger

![2.1.2](images/2.1.2.png)

![2.1.3](images/2.1.3.png)

#### Compatibility of Nsight Systems and Nsight Computes

It says it cannot communicate with the localhost, due to lack of permission.

![2.1.4](images/2.1.4.png)

It says it lacks permission to access NVIDIA GPU Performance Counters.

![2.1.5](images/2.1.5.png)

#### Compatibility Check for WebGL and WebGPU

![2.2](images/2.2.png)

![2.3](images/2.3.png)
2 changes: 1 addition & 1 deletion cuda-gl-check/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 = "Hongyi Ding";

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