diff --git a/README.md b/README.md index dd258af..5217539 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,27 @@ 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) +* Ashley Alexander-Lee + * [LinkedIn](linkedin.com/in/asalexanderlee), [Personal Website](https://asalexanderlee.myportfolio.com/) +* Tested on: Windows 10, i7-6700 @ 3.40GHz 16GB, Quadro P1000 (Towne Lab) -### (TODO: Your README) +### GPU Compatibility -Include screenshots, analysis, etc. (Remember, this is public, so don't put -anything here that you don't want to share with the world.) +Quadro P1000 is CUDA-compatible according to the [list of CUDA-comatible GPUS](https://developer.nvidia.com/cuda-gpus). +### Results + +#### Modified CUDA Project +![](images/run_result.png) + +#### Performance Profiling +The CETS lab computers do not have the extension installed that allows Nsight performance profiling (and I don't have admin access to install it). Liam said a short explanation would be acceptable for this assingment. + +#### Nsight Debugging +![](images/cuda_debugging.png) + +#### WebGL Compatibility +![](images/webgl_supported.png) + +#### DXR Compatibility +I cannot build the DXR solution on the CETS computer -- the issue seems to be you have to use debugger mode, but you have to be an admin to switch to debug mode. diff --git a/cuda-getting-started/src/main.cpp b/cuda-getting-started/src/main.cpp index 886fd4c..8df60e5 100644 --- a/cuda-getting-started/src/main.cpp +++ b/cuda-getting-started/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 = "Ashley Alexander-Lee"; if (init(argc, argv)) { mainLoop(); diff --git a/images/cuda_debugging.png b/images/cuda_debugging.png new file mode 100644 index 0000000..b0144dd Binary files /dev/null and b/images/cuda_debugging.png differ diff --git a/images/drx_run_result.png b/images/drx_run_result.png new file mode 100644 index 0000000..9f6c8fb Binary files /dev/null and b/images/drx_run_result.png differ diff --git a/images/run_result.png b/images/run_result.png new file mode 100644 index 0000000..31bc5ff Binary files /dev/null and b/images/run_result.png differ diff --git a/images/webgl_supported.png b/images/webgl_supported.png new file mode 100644 index 0000000..9c64ef5 Binary files /dev/null and b/images/webgl_supported.png differ