Skip to content

CIS565-Fall-2015/Final-Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Final Project

CIS 565: GPU Programming and Architecture

University of Pennsylvania

The final project gives you an opportunity to embark on a large GPU programming endeavor of your choice. You are free to select an area in graphics, GPU computing, or both. You can reproduce the results of recent research, add a novel extension to existing work, fulfill a real need in the community, or implement something completely original.

Expect this to be 2-3x more work than the hardest project this semester. The best projects will require a time commitment of at least 100 hours per student. It will be worth it.

Guidelines

  • Form teams of two. Each team member will receive the same grade. Teams of one or three will be considered. Teams of three will be expected to build something truly amazing like this.
  • Use GitHub. We encourage, but do not require, you to develop in a public repo as open source.
  • Programming language, graphics and compute APIs, and target platforms are up to you.
  • You are allowed to use existing code and libraries. These should be prominently credited and your code should be easily identifiable.

Project Ideas

Alternative Rendering Pipelines

Use CUDA or compute shaders to build a custom or hybrid rendering pipeline, e.g., instead of creating a rasterization pipeline for triangles, create a graphics pipeline optimizations for points, voxels, or vectors.

Surfels: Surface Elements as Rendering Primitives by Hanspeter Pfister et al.

VoxelPipe: A Programmable Pipeline for 3D Voxelization by Jacopo Pantaleoni.

Massively-Parallel Vector Graphics by Francisco Ganacim.

High-Quality Server-Side Rendering

Use WebGL on the client with perhaps low-resolution geometry and optimized shaders to view a scene. When the camera stops moving, render a high-quality image server-side using a GPU path tracer (from our course) or Photon mapper.

Image by Zakiuddin Shehzan Mohammed.

Distributed Rendering

In general, where is the client/server split?

  • All server, compress and stream?
  • Create g-buffer server-side, light accumulate client-side?
  • Temporal coherence. What can we compute server-side and use for many frames? Cube maps, etc.

Image from http://shield.nvidia.com/

Massive Terrain AO or Shadows

Terrain AO can be precomputed in a massively parallel fashion: each vertex in parallel, each ray in parallel, consider local area only, etc.

Terrain shadows can be implemented with Horizon Mapping. The horizon map for each point can be precomputed in parallel.

glTF

glTF, the GL Transmission Format (glTF), is a new runtime asset delivery format for WebGL. It needs an ecosystem of tools, documentation, and extensions. Consider implementing a minimal WebGL renderer for glTF assets or doing a detailed size/performance analysis of glTF compared to other 3D model formats. See these ideas.

Disclosure: I am one of the glTF spec editors.

WebGL Samples

WebGL 2 will bring many great features: uniform buffers, transform feedback, instancing, etc. The developer community will need simple examples to get them started. Port a subset of the fantastic and widely used OpenGL Samples Pack by Christophe Riccio to JavaScript and WebGL.

WebGL vs. OpenGL ES Mobile Power Usage

On mobile, how does the power usage of JavaScript/WebGL compare to C++/OpenGL ES 2 (or Java/ES or Objective C/ES)? For example, if the same app is developed in WebGL and OpenGL ES, which one drains the battery first - and why? What type of benchmarks need to be developed, e.g., CPU bound, GPU compute bound, GPU memory bound, etc.?

WebGL for Graphics Education

Create a tutorial using WebGL that teaches either basic GPU architecture (parallelism, branches, multithreading, SIMD, etc.) or Tile-Based Architectures like those used in mobile GPUs. For inspiration, see Making WebGL Dance by Steven Wittens.

WebGL Shader Profiler

How can we profile shaders? Develop a tool to mouse over a pixel and see the fragment shader's hotspots by modifying the shader over several runs. Can this be done automatically or does it require user-provided markup?

Previous Semesters

For inspiration, browse the CIS 565 final projects from previous semesters: Fall 2014, Fall 2013, Fall 2012, Spring 2012, and Spring 2011.

Selected Projects

Conferences and Journals

Browse these for ideas galore!

Timeline

Tuesday 11/10 - Project Pitch

Sign up for a time slot ASAP.

Your project pitch is a 15-minute meeting with Patrick and Kai and a write-up no longer than one page that includes an overview of your approach with specific goals. First, focus on why there is a need for your project. Then describe what exactly you are going to do. In addition to your write-up, provide supplemental figures, images, or videos.

Think of your pitch as if you are trying to get a startup funded, convince your company to start a new project, or responding to a grant.

Before the meeting:

  • Email your one page pitch and any supplemental material to Patrick and Kai by end of Monday 11/09.

After the meeting:

  • Push your pitch to a new GitHub repo for your project
  • Email the repo link to [email protected]

Monday 11/16 - Project Overview Presentation

In class after the guest lecture

Your first presentation should be 7-10 minutes long. Present your work-in-progress after one week of research, design, and development. Your presentation can include a few slides, videos, screenshots, and demos if possible. Be sure to

  • Demonstrate working code (videos and screenshots are OK; it doesn’t have to be live).
  • Provide a roadmap with three milestones (11/23, 11/30, and 12/07), and the final result (12/11). Set goals for each.

Present as a team. For a great example, see http://www.youtube.com/watch?v=OTCuYzAw31Y

After class, push your presentation to your GitHub repo

Monday 11/23 - Milestone 1

In class after the guest lecture

A 5-7 minute presentation on your progress over the past week. Demonstrate how you reached or exceeded the goals for this milestone. If you didn't reach them, explain why.

Push your slide to your GitHub repo by end of Monday 11/23.

Monday 11/30 - Milestone 2

In class after the guest lecture

Same format as Milestone 1.

Monday 12/07 - Milestone 3

In class after the guest lecture

Same format as Milestone 1.

Friday 12/11 - Final Presentation

5pm, Moore 212

10-minute final presentation and demo.

By midnight Thursday 12/10:

  • Push the following to GitHub
    • Final presentation slides
    • Final code - should be clean, documented, and tested.
  • A detailed README.md including:
    • Name of your project
    • Your names and links to your website/LinkedIn/twitter/whatever
    • Choice screenshots including debug views
    • Link to demo if possible. WebGL demos should include your names and a link back to your github repo.
    • Overview of technique and links to references
    • Link to video
      • Two to four minutes in length to show off your work. Your video should complement your paper and clarify anything that is difficult to describe in just words and images. Your video should both make us excited about your work and help us if we were to implement it.
    • Detailed performance analysis
    • Install and build instructions

Grading

The final project is worth 50% of your final grade. The breakdown is:

  • Project Overview Presentation: 10%
  • Milestone 1: 20%
  • Milestone 2: 20%
  • Milestone 3: 20%
  • Final Presentation: 30%

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published