Development of a Ray Casting Application for the Cell Broadband Engine Architectur e

39
Development of a Ray Casting Application for the Cell Broadband Engine Architecture Shuo Wang University of Minnesota Twin Cities Matthew Broten Institute of Technology, University of Minnesota Twin Cities Professor David A. Yuen

description

Development of a Ray Casting Application for the Cell Broadband Engine Architectur e. Shuo Wang University of Minnesota Twin Cities. Matthew Broten Institute of Technology, University of Minnesota Twin Cities. Professor David A. Yuen. Overview. General Overview - PowerPoint PPT Presentation

Transcript of Development of a Ray Casting Application for the Cell Broadband Engine Architectur e

Page 1: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Development of a Ray Casting Application for the Cell Broadband Engine Architecture

Shuo Wang University of Minnesota Twin Cities

Matthew BrotenInstitute of Technology,University of Minnesota Twin Cities

Professor David A. Yuen

Page 2: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Overview

General Overview

Programming for the Cell Architecture

Ray Casting Theory and Mathematics

Ray Casting Application Development

Page 3: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Overview: Why the Cell?

Novel 2005 was when Linux support became available

Affordable A PlayStation 3 costs $650

Fast 25.6 GFLOPs

Page 4: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Overview: What To Do

Computationally challenging even if it’s mathematically simple

Accuracy is less crucial than speed

Easy to visualize

Page 5: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Overview – Results of Internship

IEEE 2007 in Sacramento, CA

SuperComputing 2007 in Reno, NV

Page 6: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture

Page 7: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture: Challenges

Cooperation between PPE and SPEs SPE memory limitations SPE side code vectorization

Page 8: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Introductory Knowledge

Application Organization Division of Computational Labor SPE Program Initialization Communication Between PPE and SPEs Data Transfer with DMA Manual Optimization Automatic Optimization

Page 9: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Application Organization

Top Level ./spu

Page 10: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Parallelism Models

Task Parallelism Data Parallelism

Page 11: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:SPE Thread Creation

PPE program uses interface provided by libspe, a SPE runtime management library

extern spe_program_handle_t MyProgram_spu;

int main(int argc, char **argv) { ... speid_t spe_id; spe_id = spe_create_thread(threadGroup, &MyProgram_spu, &controlBlock, ... ); ...}

Page 12: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Communication Using Mailboxes

Mailboxes provide a method of communication between the PPE and the SPEs

3 Mailbox queues are provided in the Memory Flow Controller of each SPE

PPE Mailbox Queue PPE Interrupt Mailbox Queue SPU Mailbox Queue

Page 13: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Communication Using MailboxesPPE Mailbox Queue:SPE writes message, PPE reads message

unsigned int value;value = spe_read_out_inbox(spe_id);

PPE side code to receive a message:

SPE side code to write a message:unsigned int value;spu_write_out_mbox(value);

PPE Interrupt Mailbox Queue works similarly

Page 14: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Communication Using Mailboxes

SPU Mailbox Queue:PPE writes message, SPE reads message

unsigned int value;value = spu_read_in_mbox();

SPE side code to receive a message:

PPE side code to write a message:unsigned int value;spe_write_in_mbox(spe_id, value);

Page 15: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Data Transfer with DMA

(1) SPU tells DMA engine that data is needed in main memory

(2) DMA engine requests data from main memory

(3) DMA engine copies data from main memory to the local store

Page 16: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Data Transfer with DMA

Each MFC can process a queue of 24 DMA commands

Each transfer must be a multiple of 16 bytes

Maximum of 16 KB per transfer

Page 17: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Data Transfer with DMA

Primary Operations:

The GET command copies data from main memory to local storeThe PUT command copies data from local store to main memory

GET PUTSPE SIDE mfc_get mfc_put PPE SIDE spe_mfc_get spe_mfc_put

Page 18: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Control Blocks

typedef struct _control_block { uintptr32_t arrayAddress1; unsigned int value1; uintptr32_t arrayAddress2; unsigned int value2;} control_block;

What is a control block?

Example control block:

Page 19: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Data Transfer with DMA

General Approach (main memory to local store):(1) PPE: define and initialize control block in

main memory(2) PPE: pass reference to control block when

creating SPE thread (3) SPE: allocate memory in local store for control

block and other data to be transferred(4) SPE: copy control block from main memory to

local store(5) SPE: use address in control block to copy

other data from main memory to local store

Page 20: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Pipelining

Optimization not in place:

Pipeline Optimization:

Page 21: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Programming for the Cell Architecture:Compilers

GCC vs IBM XLCData from Eric Rollins “Ray Tracing” Application

Graph provided by Eric Rollins: http://eric_rollins.home.mindspring.com/ray/ray.html

Page 22: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Theory and Mathematics - Overview

Page 23: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Theory and Mathematics: Math

Triangles defined by three vertex points A, B, and C in R3

If there is an intersection between the ray and the triangle, then P = E + tV, where P = point of intersection between ray and triangle E = location of eye V = directional ray from the eye to the pixel of interest t represents the distance from the point of intersection to E along V

Page 24: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Theory and Mathematics: Math

If <N, V> is 0, where N is the normal of the triangle, then there is no intersection, try the next pixel.

Else, compute P D= -<N,A> (A is a point of the triangle)

t = -(<N,Q> - D) / <N,V>P = E + tV

Check that P lies in the triangle defined by A,B,C:if P is in the triangle ABC the sign of these three will be the same:inA = <N,(P X A)>inB = <N,(P X B)>inC = <N,(P X C)>

Calculate diffusions

Page 25: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Theory and Mathematics – Pseudo Code

http://lilli.msi.umn.edu/ps3svn/ray/branches/esevre/spu/trace.h

For (width of screen) { For (height of screen) {

For (all objects in screen) { Find edges of objects if (ray crosses object) {

Calculate Reflections }

} }

}

Page 26: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application Development

Page 27: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application Development

Overview Development Roadmap Current Capabilities Implementation Details Future Goals

Page 28: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application: Overview Created an enhanced version of Eric Rollins' open

source “Real-Time Ray Tracing” application

(1) (2) (3)

Page 29: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application:Development Roadmap

(1) Learning and exploration of Eric Rollins' “Ray Tracing” package

(2) Enhancement of “trace algorithm” for rendering of triangles

(2) Implementation of translation and rotation functionality

(3) Implementation of triangle initialization and transfer mechanism

Page 30: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application:Development Roadmap

(1) Exploration of Eric Rollins' open source application

Page 31: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application:Development Roadmap

(2) Enhancement of “trace algorithm” for rendering of triangles

Page 32: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application:Development Roadmap

(3) Implementation of translation and rotation functionality

Page 33: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application:Development Roadmap

(4) Implementation of triangle initialization and transfer mechanisms

Each triangle structure:- contains 3 float vectors; each float vector contains three coordinates (X, Y, Z) and represent a point of the triangle- consumes 48 bytes of memory since each float vector requires 16 bytes

DMA transfers must be 16 KB or less and a size that’s a multiple of 16 bytes-- This amounts to a max of 336 triangles per transfer

About 189 KB free in local store- Enough room for 11 transfers of 336 triangles which is a total of 3969 triangles

Page 34: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application:Current Capabilities

Page 35: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application:Implementation Details

Application Organization: two programs: - one executes on the PPU - one runs on each SPU

Division of Labor: task parallelism where each SPE: - holds identical data in its local store - is responsible for doing computations for 1/6 of

lines rendered to screen

Page 36: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application:PPE Program Life Cycle

(1) (2) (3) (4) (5)

Page 37: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application:SPE Program Life Cycle

(1) (2) (3) (4) (5)

Page 38: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

Ray Casting Application:Future Goals

Visualize larger datasets- Now: limited to the rendering of about 4000 triangles - Goal: develop mechanisms to render hundreds of thousands of triangles

Distribute computation over several PS3s- Now: all computation performed on single PS3- Goal: build a cluster of PS3s and increase application performance by dividing workload among PS3s in the cluster

Page 39: Development of a Ray Casting Application  for the Cell Broadband Engine Architectur e

PS3 Wiki URL

For more information:http://marina.geo.umn.edu/ps3-wiki