Archit ect ure s w it h

Size: px
Start display at page:

Download "Archit ect ure s w it h"

Transcription

1 Inst ruct ion Select ion for Com pilers t hat Target Archit ect ure s w it h Echo Inst ruct ions Philip Brisk Ani Nahapetian Majid philip@cs.ucla.edu ani@cs.ucla.edu Sarrafzadeh m ajid@cs.ucla.edu Em bedded and Reconfigurable Syst em s Lab Com put er Science Depart m ent Universit y of California, Los Angeles

2 Outline Code Com pression LZ7 7 Com pression Echo Inst ruct ions Com piler Fram ew ork Experim ent al Result s Sum m ary

3 Code Com pression W hy Com press a Program? Silicon Require m ent s for on-chip ROM Pow e r Consum pt ion Cost t o Fabricat e Cost Paid by t he Consum er Are t here Cost s t o Decom pression? Perform a nce Overhe ad Dedicat e d Hardw a re (or Soft w are) Longer CPU Pipelines Incre ase d Bra nch M ispredict ion Pe na lt y

4 LZ77 Com pression To Com press a St ring, Ident ify Repeat ed Subst rings and Replace Each w it h a Point er (Offset, Lengt h of Sequence) ABCDBCABCDBACABCDBADAABCDBDC 2 8 ABCDBCABCDBACABCDBADAABCDBDC 2 8 one chara ct er Lengt h

5 Echo Instructions Decom presses LZ7 7 -com pressed Program s w it h M inim al Hardw are Requirem ent s 2 Dedicat e d Regist ers: R 1, R 2 1 Decre m e nt e r w it h = 0 Test ( NOR) Echo( Offset, N) 1. Save PC and N in R 1 a nd R 2 2. Branch t o PC Offse t 3. Execut e t he next N inst ruct ions 4. Re t urn t o t he Call Point 5. Re st ore PC from R 1 (Fraser, M icrosoft 0 2 ) (La u, CASES 0 3 )

6 Substring Matching $1 $2 + $3 $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1 $1 $2 + $3 $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1 $1 $2 + $3 $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1 (Fraser, SCC $1 $2 + $3 $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1 $Echo(240, 5) $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1 Ech o(304, 5) $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1

7 Reschedule/Renam e $1 $2 + $3 $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1 $10 $5 + $4 $11 $9 * $6 $6 $9 * $10 $10 $11 / $6 $10 $ $11 $7 * $8 $1 $2 + $3 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1 Renam e $4 : $3 $5 : $2 $6 : $8 $9 : $7 $10 : $1 $11 : $11 (Cooper, PLDI 9 9 ) (Debray, TOPLAS 0 0 ) Reschedule (Lau, CASES 0 3 ) $1 $2 + $3 $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1 $1 $2 + $3 $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1 $1 $2 + $3 $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1

8 DFG Isom orphism $1 $2 + $3 $11 $7 * $8 $8 $7 * $1 $1 $11 / $8 $1 $8 + 1 $10 $5 + $4 $11 $9 * $6 $6 $9 * $10 $10 $11 / $6 $10 $ $11 $7 * $8 $1 $2 + $3 $8 $7 * $1 $1 $11 / $8 $1 $ * / + * Our Approach Represe nt Sequence s a s Da t a Flow Graphs Ide nt ify Repeat ed Isom orphic Subgra phs Replace Subgraphs w it h Echo Inst ruct ions

9 Isom orphic Subgraph Identification Edge Cont ract ion (Kast ner, ICCAD 0 1 ) Conside r a New Subgraph for Each DFG Edge

10 Isom orphic Subgraph Identification Com put e an Independent Set for Each Edge Type NP-Com ple t e Problem It erat ive Im provem ent Algorit hm - (Kirovski, DAC 9 8 )

11 Isom orphic Subgraph Identification Replace M ost Frequent ly Occurring Pat t ern w it h a Tem plat e Original DFG Edge Dat a Dependencies Incident on Te m plat es Dat a Dependencies t hat Cross Tem plat e Boundaries

12 Isom orphic Subgraph Identification Edge Cont ract ion in t he Presence of Tem plat es Gene ra t e Ne w Tem pla t es Along Bold Edges Test for Tem pla t e Equivale nce is DAG Isom orphism Used t he Publicly Available VF2 Algorit hm

13 Isom orphic Subgraph Identification

14 Isom orphic Subgraph Identification Replace M ost Frequent ly Occurring Pat t ern w it h a Tem plat e Original DFG Edge Dat a Dependencies Incident on Te m plat es Dat a Dependencies t hat Cross Tem plat e Boundaries

15 Isom orphic Subgraph Identification Replace M ost Frequent ly Occurring Pat t ern w it h a Tem plat e Original DFG Edge Dat a Dependencies Incident on Te m plat es Dat a Dependencies t hat Cross Tem plat e Boundaries

16 Register Allocation Isom orphic Tem plat es M ust Have Ident ical Usage of Regist ers Regist er s Shuffle or Spill Code

17 Register Allocation Code Reuse Const raint s M ay W ork Against Code Size Each Te m plat e Elim inat es 3 Inst rs. 5 Shuffle/Spill Ops. are Required The General Problem is Very Com plicat ed Exist ing Allocat ion Te chniques Are Not Applicable Regist er s Shuffle or Spill Code Present St at us: The Alloca t or is a W ork-in-

18 Isom orphic Subgraph Identification Aft er Regist er Allocat ion, Replace Subgraphs w it h Echo Inst ruct ions Echo Echo Echo

19 Our Goal is t o Evaluat e t he Effect iveness of Subgraph Ident ificat ion Experim ental Fram ework Built Subgraph Ident ificat ion int o t he M achine-suif Fram ew ork Pass Pla ced Be t w een Inst ruct ion Select ion and Regist e r Alloca t ion Curre nt Im ple m e nt a t ion Support s Alpha as Target Allow s for Fut ure Int e grat ion w it h Sim plescalar Sim ulat or

20 Experim ental Methodology W it hout Allocat ion in Place, W e Cannot : Est im at e W here Shuffle /Spill Code W ill be Insert ed at Tem plat e Boundaries Det erm ine W hich Copy Inst ruct ions W ill be Coalesce d But W e Can: M ake Assum pt ions Regarding t he St art ing Point for Regist er Allocat ion

21 Two Approaches to Coalescing Pessim ist ic Coalescing (M ost Allocat ors) Begin w it h All Copy Inst ruct ions in Pla ce Coalesce Copies W hen Safe Opt im ist ic Coalescing (Park & M oon, PACT 9 8 ): Init ially Coalesce ALL Copy Inst ruct ions Re-Int roduce Coale sced Copies t o Avoid Spilling Live Ranges W he ne ver Possible

22 Assum ptions and Measurem ent Pessim ist ic Assum pt ion No Copy Inst ruct ions a re Coalesced Opt im ist ic Assum pt ion ALL Copy Inst ruct ions are Coale sced Com put e t he Num ber of DFG Operat ions Before and Aft er Com pression St ep PU: Pessim ist ic, Uncom pressed OU: Opt im ist ic, Uncom pressed PC: Pessim ist ic, Com pressed Com pressed OC: Opt im ist ic,

23 Benchm arks Taken from t he M ediabench and M ibench Applicat ion Suit es Be nchm a r k ADPCM low fish Epic G7 2 1 JPEG M PEG2 Dec M PEG2 Enc Pegw it Descript ion Adapt ive Different Sym ial m Pulse et ric Code Block M odulat Cipher ion w it h Variable Key Lengt h Im age Dat a Com pression Ut ilit y Voice Com pression Im age Com pression and Decom pre ssion M PEG2 Decoder M PEG2 Encoder Public Key Encrypt ion and Aut hent icat ion

24 Experim ental Results PU: Pessim ist ic, Uncom pressed OU: Opt im ist ic, Uncom pressed PC: Pessim ist ic, Com pressed Com pressed OC: Opt im ist ic, DFG Ops PU PC OU OC 0 ADPCM Blowfish Epic G721 JPEG MPEG2 Dec. MPEG2 Enc. Pegwit

25 Runtim e Considerations Algorit hm Ran Efficient ly ( a few seconds) for M ost Benchm arks Several Not able Except ions Four Com m on Fe at ure s Large DFGs User-De fine d M acros Unrolled Loops Cyclic Shift ing of Pa ra m et ers sha1.c (Pegw it ) One DFG Com pilat ion Tim e W as in Excess of 3 Hrs

26 Runtim e Considerations sha1.c # define R0 ( v, w, x, y, z, i) { z + = ; w = } void SHA1 Transform ( unsigned long st at e[5], ) { unsigned long a = st at e[0 ], b = st at e[1 ], c = st at e[2 ], d = st at e[3], e = st at e[4 ] ; } R0 (a, b, c, d, e, 0 ); R0 (e, a, b, c, d, 1 ); R0 (d, e, a, b, c, 2 ); R0 (c, d, e, a, b, 3 ); R0 (b, c, d, e, a, 4 ); R0 (a, b, c, d, e, 5 ); R0 (a, b, c, d, e, 1 5 );

27 Com pilat ion Tim e W as Reduced t o Seconds Runtim e Considerations sha1.c # define R0 ( v, w, x, y, z, i) { z + = ; w = } void SHA1 Transform ( unsigned long st at e[5], ) { unsigned long a = st at e[0 ], b = st at e[1 ], c = st at e[2 ], d = st at e[3], e = st at e[4 ], t m p; } for( unsigned long i = 0 ; i < 1 6 ; i+ + ) { R0 (a, b, c, d, e, i); t m p = e; e = d; d = c; c = b; b = a; a = t m p; }

28 Conclusion Echo Inst ruct ions Com pression a t a M inim al Hardw are Cost Perform a nce Overhead is Tw o Branches pe r Echo Com piler Opt im izat ion Ident ify Redunda ncy via Subgra ph Isom orphism New Cha llenge s for Regist er Allocat ion Experim ent s Significant Redunda ncy Observed in

Nov Julien Michel

Nov Julien Michel Int roduct ion t o Free Ene rgy Calculat ions ov. 2005 Julien Michel Predict ing Binding Free Energies A A Recept or B B Recept or Can we predict if A or B will bind? Can we predict the stronger binder?

More information

I zm ir I nstiute of Technology CS Lecture Notes are based on the CS 101 notes at the University of I llinois at Urbana-Cham paign

I zm ir I nstiute of Technology CS Lecture Notes are based on the CS 101 notes at the University of I llinois at Urbana-Cham paign I zm ir I nstiute of Technology CS - 1 0 2 Lecture 1 Lecture Notes are based on the CS 101 notes at the University of I llinois at Urbana-Cham paign I zm ir I nstiute of Technology W hat w ill I learn

More information

The Ind ian Mynah b ird is no t fro m Vanuat u. It w as b ro ug ht here fro m overseas and is now causing lo t s o f p ro b lem s.

The Ind ian Mynah b ird is no t fro m Vanuat u. It w as b ro ug ht here fro m overseas and is now causing lo t s o f p ro b lem s. The Ind ian Mynah b ird is no t fro m Vanuat u. It w as b ro ug ht here fro m overseas and is now causing lo t s o f p ro b lem s. Mynah b ird s p ush out nat ive b ird s, com p et ing for food and p laces

More information

Alles Taylor & Duke, LLC Bob Wright, PE RECORD DRAWINGS. CPOW Mini-Ed Conf er ence Mar ch 27, 2015

Alles Taylor & Duke, LLC Bob Wright, PE RECORD DRAWINGS. CPOW Mini-Ed Conf er ence Mar ch 27, 2015 RECORD DRAWINGS CPOW Mini-Ed Conf er ence Mar ch 27, 2015 NOMENCLATURE: Record Draw ings?????? What Hap p ened t o As- Built s?? PURPOSE: Fur n ish a Reco r d o f Co m p o n en t s Allo w Locat io n o

More information

C o r p o r a t e l i f e i n A n c i e n t I n d i a e x p r e s s e d i t s e l f

C o r p o r a t e l i f e i n A n c i e n t I n d i a e x p r e s s e d i t s e l f C H A P T E R I G E N E S I S A N D GROWTH OF G U IL D S C o r p o r a t e l i f e i n A n c i e n t I n d i a e x p r e s s e d i t s e l f i n a v a r i e t y o f f o r m s - s o c i a l, r e l i g i

More information

Agenda Rationale for ETG S eek ing I d eas ETG fram ew ork and res u lts 2

Agenda Rationale for ETG S eek ing I d eas ETG fram ew ork and res u lts 2 Internal Innovation @ C is c o 2 0 0 6 C i s c o S y s t e m s, I n c. A l l r i g h t s r e s e r v e d. C i s c o C o n f i d e n t i a l 1 Agenda Rationale for ETG S eek ing I d eas ETG fram ew ork

More information

Spontaneous reactions occur only between the reactants shown in red.

Spontaneous reactions occur only between the reactants shown in red. Energy revision Solutions Question 1 The react io n b et w een so lut io n s of h yd roch lo ric acid an d so d ium h yd roxid e can b e rep resen t ed b y t h e f o llow in g eq uat io n. HCl(aq ) + NaOH(aq

More information

Building Validation Suites with Eclipse for M odel-based G eneration Tools

Building Validation Suites with Eclipse for M odel-based G eneration Tools Building Validation Suites with Eclipse for M odel-based G eneration Tools 24.6.2010 D r. O scar Slotosch Validas A G C ontent M o d el-b ased D evelo p m en t (o f Em b ed d ed Syst em s) ISO 26262 Valid

More information

T h e C S E T I P r o j e c t

T h e C S E T I P r o j e c t T h e P r o j e c t T H E P R O J E C T T A B L E O F C O N T E N T S A r t i c l e P a g e C o m p r e h e n s i v e A s s es s m e n t o f t h e U F O / E T I P h e n o m e n o n M a y 1 9 9 1 1 E T

More information

A L A BA M A L A W R E V IE W

A L A BA M A L A W R E V IE W A L A BA M A L A W R E V IE W Volume 52 Fall 2000 Number 1 B E F O R E D I S A B I L I T Y C I V I L R I G HT S : C I V I L W A R P E N S I O N S A N D TH E P O L I T I C S O F D I S A B I L I T Y I N

More information

LSU Historical Dissertations and Theses

LSU Historical Dissertations and Theses Louisiana State University LSU Digital Commons LSU Historical Dissertations and Theses Graduate School 1976 Infestation of Root Nodules of Soybean by Larvae of the Bean Leaf Beetle, Cerotoma Trifurcata

More information

CLASSIFICATION OF REACTION TO FIRE PERFORMANCE IN ACCORDANCE WITH EN :2007+A1:2009

CLASSIFICATION OF REACTION TO FIRE PERFORMANCE IN ACCORDANCE WITH EN :2007+A1:2009 P.O. Box 554 2665 ZN Bleiswij k Brandpunt laan Zuid 16 2665 NZ Bleiswij k The Net herlands +31 88 3473 723 nederland@efect is.com OF REACTION TO FIRE PERFORMANCE IN ACCORDANCE WITH EN 135011:2007+A1:2009

More information

e-hm REPAIR PARTS REPAIR PARTS ReHM R3

e-hm REPAIR PARTS REPAIR PARTS ReHM R3 e-hm REPAIR PARTS REPAIR PARTS ReHM R3 TABLE OF CONTENTS Rating Plate..........................................................................................2 A li ati n ene t an n t......................................................................3

More information

Software Process Models there are many process model s in th e li t e ra t u re, s om e a r e prescriptions and some are descriptions you need to mode

Software Process Models there are many process model s in th e li t e ra t u re, s om e a r e prescriptions and some are descriptions you need to mode Unit 2 : Software Process O b j ec t i ve This unit introduces software systems engineering through a discussion of software processes and their principal characteristics. In order to achieve the desireable

More information

OH BOY! Story. N a r r a t iv e a n d o bj e c t s th ea t e r Fo r a l l a g e s, fr o m th e a ge of 9

OH BOY! Story. N a r r a t iv e a n d o bj e c t s th ea t e r Fo r a l l a g e s, fr o m th e a ge of 9 OH BOY! O h Boy!, was or igin a lly cr eat ed in F r en ch an d was a m a jor s u cc ess on t h e Fr en ch st a ge f or young au di enc es. It h a s b een s een by ap pr ox i ma t ely 175,000 sp ect at

More information

S ca le M o d e l o f th e S o la r Sy ste m

S ca le M o d e l o f th e S o la r Sy ste m N a m e ' D a t e ' S ca le M o d e l o f th e S o la r Sy ste m 6.1 I n t r o d u c t i o n T h e S olar System is large, at least w hen com pared to distances we are fam iliar w ith on a day-to-day basis.

More information

Th e E u r o p e a n M ig r a t io n N e t w o r k ( E M N )

Th e E u r o p e a n M ig r a t io n N e t w o r k ( E M N ) Th e E u r o p e a n M ig r a t io n N e t w o r k ( E M N ) H E.R E T h em at ic W o r k sh o p an d Fin al C o n fer en ce 1 0-1 2 Ju n e, R agu sa, It aly D avid R eisen zein IO M V ien n a Foto: Monika

More information

P a g e 5 1 of R e p o r t P B 4 / 0 9

P a g e 5 1 of R e p o r t P B 4 / 0 9 P a g e 5 1 of R e p o r t P B 4 / 0 9 J A R T a l s o c o n c l u d e d t h a t a l t h o u g h t h e i n t e n t o f N e l s o n s r e h a b i l i t a t i o n p l a n i s t o e n h a n c e c o n n e

More information

176 5 t h Fl oo r. 337 P o ly me r Ma te ri al s

176 5 t h Fl oo r. 337 P o ly me r Ma te ri al s A g la di ou s F. L. 462 E l ec tr on ic D ev el op me nt A i ng er A.W.S. 371 C. A. M. A l ex an de r 236 A d mi ni st ra ti on R. H. (M rs ) A n dr ew s P. V. 326 O p ti ca l Tr an sm is si on A p ps

More information

exclusive fully t iled one-piece p o o l s & s p a s Delivered t o your door High Qualit y Fully t iled & complet e page 1

exclusive fully t iled one-piece p o o l s & s p a s Delivered t o your door High Qualit y Fully t iled & complet e page 1 exclusive fully t iled one-piece p o o l s & s p a s High Qualit y Delivered t o your door Fully t iled & complet e page 1 C L A S S I C The Classic is a cont emporary st yle swimming pool which has proven

More information

THIS PAGE DECLASSIFIED IAW E

THIS PAGE DECLASSIFIED IAW E THS PAGE DECLASSFED AW E0 2958 BL K THS PAGE DECLASSFED AW E0 2958 THS PAGE DECLASSFED AW E0 2958 B L K THS PAGE DECLASSFED AW E0 2958 THS PAGE DECLASSFED AW EO 2958 THS PAGE DECLASSFED AW EO 2958 THS

More information

THE SHARED MILK RUN THE MISSING LINK IN LEAN MANUFACTUING HOW IT WORKS. spl it - bil l mil kr un. What is it?

THE SHARED MILK RUN THE MISSING LINK IN LEAN MANUFACTUING HOW IT WORKS. spl it - bil l mil kr un. What is it? THE SHARED MILK RUN What is it? Com p an ies are con t in u ally ch allen g ed t o im p rove t h eir overall op erat ion al services by red u cin g t ran sp ort at ion sp en d in g, in ven t ory levels

More information

Geometric Predicates P r og r a m s need t o t es t r ela t ive p os it ions of p oint s b a s ed on t heir coor d ina t es. S im p le exa m p les ( i

Geometric Predicates P r og r a m s need t o t es t r ela t ive p os it ions of p oint s b a s ed on t heir coor d ina t es. S im p le exa m p les ( i Automatic Generation of SS tag ed Geometric PP red icates Aleksandar Nanevski, G u y B lello c h and R o b ert H arp er PSCICO project h ttp: / / w w w. cs. cm u. ed u / ~ ps ci co Geometric Predicates

More information

APPLICATION OF AUTOMATION IN THE STUDY AND PREDICTION OF TIDES AT THE FRENCH NAVAL HYDROGRAPHIC SERVICE

APPLICATION OF AUTOMATION IN THE STUDY AND PREDICTION OF TIDES AT THE FRENCH NAVAL HYDROGRAPHIC SERVICE APPLICATION OF AUTOMATION IN THE STUDY AND PREDICTION OF TIDES AT THE FRENCH NAVAL HYDROGRAPHIC SERVICE by L. R o u m é g o u x Ingénieur H ydrographe en Chef, C hief of the T idal Section The considerable

More information

The Ability C ongress held at the Shoreham Hotel Decem ber 29 to 31, was a reco rd breaker for winter C ongresses.

The Ability C ongress held at the Shoreham Hotel Decem ber 29 to 31, was a reco rd breaker for winter C ongresses. The Ability C ongress held at the Shoreham Hotel Decem ber 29 to 31, was a reco rd breaker for winter C ongresses. Attended by m ore than 3 00 people, all seem ed delighted, with the lectu res and sem

More information

H STO RY OF TH E SA NT

H STO RY OF TH E SA NT O RY OF E N G L R R VER ritten for the entennial of th e Foundin g of t lair oun t y on ay 8 82 Y EEL N E JEN K RP O N! R ENJ F ] jun E 3 1 92! Ph in t ed b y h e t l a i r R ep u b l i c a n O 4 1922

More information

CHAPTER 1: TOOLS FOR ALGEBRA AND GEOMETRY

CHAPTER 1: TOOLS FOR ALGEBRA AND GEOMETRY Pre-Algebra CHAPTER 1: TOOLS FOR ALGEBRA AND GEOMETRY Chapter 1: WRITE THIS DOWN IN YOUR PLANNER 1-2 PEMDAS and Divisibility Rules FRIDAY - QUIZ 1A 1-3 Variables and Expressions 1-4 Variables and Equations

More information

Fr anchi s ee appl i cat i on for m

Fr anchi s ee appl i cat i on for m Other Fr anchi s ee appl i cat i on for m Kindly fill in all the applicable information in the spaces provided and submit to us before the stipulated deadline. The information you provide will be held

More information

R C o n t r o l l e d D o o r C l o s e r

R C o n t r o l l e d D o o r C l o s e r R 1 0 0 C o n t r o l l e d D o o r C l o s e r BO DY HOLES FOR ALLEN KEY LINK ROD A DJUSTER WITH DUST CAP Samuel Heath closing speed power latching action LOCKING SCREW PO WER LATCHING ACTIO N A DJUSTER

More information

Form and content. Iowa Research Online. University of Iowa. Ann A Rahim Khan University of Iowa. Theses and Dissertations

Form and content. Iowa Research Online. University of Iowa. Ann A Rahim Khan University of Iowa. Theses and Dissertations University of Iowa Iowa Research Online Theses and Dissertations 1979 Form and content Ann A Rahim Khan University of Iowa Posted with permission of the author. This thesis is available at Iowa Research

More information

M M 3. F orc e th e insid e netw ork or p rivate netw ork traffic th rough th e G RE tunnel using i p r ou t e c ommand, fol l ow ed b y th e internal

M M 3. F orc e th e insid e netw ork or p rivate netw ork traffic th rough th e G RE tunnel using i p r ou t e c ommand, fol l ow ed b y th e internal C i s c o P r o f i l e C o n t a c t s & F e e d b a c k H e l p C isc o S M B S up p ort A ssistant Pass Routing Information over IPsec VPN Tunnel between two ASA/PIX H ome > W ork W ith M y S ec urity

More information

FOR SALE T H S T E., P R I N C E AL BER T SK

FOR SALE T H S T E., P R I N C E AL BER T SK FOR SALE 1 50 1 1 5 T H S T E., P R I N C E AL BER T SK CHECK OUT THIS PROPERTY ON YOUTUBE: LIVINGSKY CONDOS TOUR W W W. LIV IN G S K YC O N D O S. C A Th e re is ou tstan d in g val ue in these 52 re

More information

Dangote Flour Mills Plc

Dangote Flour Mills Plc SUMMARY OF OFFER Opening Date 6 th September 27 Closing Date 27 th September 27 Shares on Offer 1.25bn Ord. Shares of 5k each Offer Price Offer Size Market Cap (Post Offer) Minimum Offer N15. per share

More information

ID: V i e w A l l F i r s t 1 of 1 L a s t

ID: V i e w A l l F i r s t 1 of 1 L a s t ID: Academ ic Adv isem ent University of New Orleans Undergraduate This report last generated on 07/22/2014 12:15PM collapse all expand all view report as pdf Taken In Progress Planned Dis claim e r [RG:

More information

CPU. 60%/yr. Moore s Law. Processor-Memory Performance Gap: (grows 50% / year) DRAM. 7%/yr. DRAM

CPU. 60%/yr. Moore s Law. Processor-Memory Performance Gap: (grows 50% / year) DRAM. 7%/yr. DRAM ecture 1 3 C a ch e B a s i cs a n d C a ch e P erf o rm a n ce Computer Engineering 585 F a l l 2 0 0 2 What Is emory ierarchy typical memory hierarchy today "! '& % ere we focus on 1/2/3 caches and main

More information

Alignment met hods developed for t he validat ion of t he t hermal and mechanical behavior of t he Two Beam Test Modules for t he CLIC project

Alignment met hods developed for t he validat ion of t he t hermal and mechanical behavior of t he Two Beam Test Modules for t he CLIC project Alignment met hods developed for t he validat ion of t he t hermal and mechanical behavior of t he Two Beam Test Modules for t he CLIC project Hélène MAINAUD DURAND, on behalf of the CLIC pre-alignment

More information

Large chunks. voids. Use of Shale in Highway Embankments

Large chunks. voids. Use of Shale in Highway Embankments Use of Shale in Highway Embankments C. W. Lovell R esearch Engineer Joint Highway R esearch Project School of Civil E ngineering P urdue University IN T R O D U C T IO N Poor perform ance of m idw estern

More information

Procedures for Computing Classification Consistency and Accuracy Indices with Multiple Categories

Procedures for Computing Classification Consistency and Accuracy Indices with Multiple Categories esearcli R eport Semes 2 0 0 0 Procedures for Computing Classification Consistency and Accuracy Indices with Multiple Categories Won-Chan Lee Bradley A. Hanson Robert L. Brennan ACT O c t o b e r For additional

More information

Executive Committee and Officers ( )

Executive Committee and Officers ( ) Gifted and Talented International V o l u m e 2 4, N u m b e r 2, D e c e m b e r, 2 0 0 9. G i f t e d a n d T a l e n t e d I n t e r n a t i o n a2 l 4 ( 2), D e c e m b e r, 2 0 0 9. 1 T h e W o r

More information

Use precise language and domain-specific vocabulary to inform about or explain the topic. CCSS.ELA-LITERACY.WHST D

Use precise language and domain-specific vocabulary to inform about or explain the topic. CCSS.ELA-LITERACY.WHST D Lesson eight What are characteristics of chemical reactions? Science Constructing Explanations, Engaging in Argument and Obtaining, Evaluating, and Communicating Information ENGLISH LANGUAGE ARTS Reading

More information

Physics 663. Par t icle Physics Phenomenology. May 7, Physics 663, lecture 8 1

Physics 663. Par t icle Physics Phenomenology. May 7, Physics 663, lecture 8 1 Physics 663 Par t icle Physics Phenomenology May 7, 2002 Physics 663, lecture 8 1 Det ect or s I nt er act ion of Char ged Par t icles and Radiat ion wit h Mat t er I onizat ion loss of char ged par t

More information

P a g e 3 6 of R e p o r t P B 4 / 0 9

P a g e 3 6 of R e p o r t P B 4 / 0 9 P a g e 3 6 of R e p o r t P B 4 / 0 9 p r o t e c t h um a n h e a l t h a n d p r o p e r t y fr om t h e d a n g e rs i n h e r e n t i n m i n i n g o p e r a t i o n s s u c h a s a q u a r r y. J

More information

Lesson Ten. What role does energy play in chemical reactions? Grade 8. Science. 90 minutes ENGLISH LANGUAGE ARTS

Lesson Ten. What role does energy play in chemical reactions? Grade 8. Science. 90 minutes ENGLISH LANGUAGE ARTS Lesson Ten What role does energy play in chemical reactions? Science Asking Questions, Developing Models, Investigating, Analyzing Data and Obtaining, Evaluating, and Communicating Information ENGLISH

More information

d 1941. ncies ation thereors as ence, is, which r he the of are anvass ve ining, ies a study ely, fully ta special e rested gencies that are affiliated mably, these agenand at least somewhat l, they are

More information

OPTIMISATION PROCESSES IN TIDAL ANALYSIS

OPTIMISATION PROCESSES IN TIDAL ANALYSIS OPTIMISATION PROCESSES IN TIDAL ANALYSIS by M. T. M u r r a y Liverpool Tid al In stitu te Introduction An analysis of tidal observations is norm ally carried out, not as an end in itself, but in order

More information

K E L LY T H O M P S O N

K E L LY T H O M P S O N K E L LY T H O M P S O N S E A O LO G Y C R E ATO R, F O U N D E R, A N D PA R T N E R K e l l y T h o m p s o n i s t h e c r e a t o r, f o u n d e r, a n d p a r t n e r o f S e a o l o g y, a n e x

More information

F O R M T H R E E K enya C ertificate of Secondary E ducation

F O R M T H R E E K enya C ertificate of Secondary E ducation N a m e : A d m. N o...... D a t e : C la ss:.... 565/1 FO R M 3 B U S I N E S S S T U D I E S P A P E R 1 T I M E : 2 H O U R S T R I A L 6 2 0 1 8 FO R M 3 B U S I N E S S S T U D I E S P A P E R 1 T

More information

TIDAL PREDICTION WITH A SMALL PERSONAL COMPUTER

TIDAL PREDICTION WITH A SMALL PERSONAL COMPUTER International Hydrographic Review, Monaco, LXII (2), July 1985 TIDAL PREDICTION WITH A SMALL PERSONAL COMPUTER by A.S. F R A N C O 1*1 ABSTRACT This paper show s how a personal com puter with 16Kb only

More information

S O M A M O H A M M A D I 13 MARCH 2014

S O M A M O H A M M A D I 13 MARCH 2014 CONVERSION OF EXISTING DISTRICT HEATING TO LOW-TEMPERATURE OPERATION AND EXTENSION OF NEW AREAS OF BUILDINGS S O M A M O H A M M A D I 13 MARCH 2014 Outline Why Low - Te mperature District Heating Existing

More information

Designing the Human Machine Interface of Innovative Emergency Handling Systems in Cars

Designing the Human Machine Interface of Innovative Emergency Handling Systems in Cars Designing the Human Machine Interface of Innovative Emergency Handling Systems in Cars M anfred D A N G E L M A IE R * and P etra M A N G O L ** *Fraunhofer IAO, N obelstr. 12, D -70569 Stuttgart, **IA

More information

A Study of Drink Driving and Recidivism in the State of Victoria Australia, during the Fiscal Years 1992/ /96 (Inclusive)

A Study of Drink Driving and Recidivism in the State of Victoria Australia, during the Fiscal Years 1992/ /96 (Inclusive) A Study of Drink Driving and Recidivism in the State of Victia Australia, during the Fiscal Years 1992/93-1995/96 (Inclusive) M ichael M o l o n e y, D iane P a l a ia V ictia Police Fce, T raffic A lcohol

More information

Protein- Ligand Interactions

Protein- Ligand Interactions Protein- Ligand Interactions Outline Introduction Interm olecular bonding forces Electrostatic or ionic bonds Hydrogen bonds Van der Waals interactions Dipole- dipole and ion- dipole interactions Repulsive

More information

Table of C on t en t s Global Campus 21 in N umbe r s R e g ional Capac it y D e v e lopme nt in E-L e ar ning Structure a n d C o m p o n en ts R ea

Table of C on t en t s Global Campus 21 in N umbe r s R e g ional Capac it y D e v e lopme nt in E-L e ar ning Structure a n d C o m p o n en ts R ea G Blended L ea r ni ng P r o g r a m R eg i o na l C a p a c i t y D ev elo p m ent i n E -L ea r ni ng H R K C r o s s o r d e r u c a t i o n a n d v e l o p m e n t C o p e r a t i o n 3 0 6 0 7 0 5

More information

I M P O R T A N T S A F E T Y I N S T R U C T I O N S W h e n u s i n g t h i s e l e c t r o n i c d e v i c e, b a s i c p r e c a u t i o n s s h o

I M P O R T A N T S A F E T Y I N S T R U C T I O N S W h e n u s i n g t h i s e l e c t r o n i c d e v i c e, b a s i c p r e c a u t i o n s s h o I M P O R T A N T S A F E T Y I N S T R U C T I O N S W h e n u s i n g t h i s e l e c t r o n i c d e v i c e, b a s i c p r e c a u t i o n s s h o u l d a l w a y s b e t a k e n, i n c l u d f o l

More information

(2009) Journal of Rem ote Sensing (, 2006) 2. 1 (, 1999), : ( : 2007CB714402) ;

(2009) Journal of Rem ote Sensing (, 2006) 2. 1 (, 1999), : ( : 2007CB714402) ; 100724619 (2009) 0220183207 Journal of Rem ote Sensing 1, 2, 3, 3, 3, 1 1., 100101; 2., 100049; 3., 100080 :,,, 3, ( ),1%,, :,,, : TP79 : A 1 20,,,,;, (, 1999),,,,, (, 2006),,,,, 2 2. 1 : 2007209217; :

More information

TH E TO P 5 D O G O W N ER S M A K E

TH E TO P 5 D O G O W N ER S M A K E T H E C O L L A R E D SC H O L A R TH E TO P 5 MISTAKES D O G O W N ER S M A K E when walkingtheir dogs RECLA IM YO U R W A LK Do you ever find yourself st aring at t hose dog ow ners w ho seem t o have

More information

Rotary D ie-cut System RD series. RD series. Rotary D ie-cut System

Rotary D ie-cut System RD series. RD series. Rotary D ie-cut System Rotary D ie-cut System RD series RD series Rotary D ie-cut System Si m p l e, h i g h q u a l i t y, c o m p a c t r o t a r y Di e -c u t s y s t e Improve your die cutting process! Easy change over the

More information

REGISTRATION DOCUMENTATION ENROLLMENT RENEWAL SCHOOL YEAR STUDENT

REGISTRATION DOCUMENTATION ENROLLMENT RENEWAL SCHOOL YEAR STUDENT REGISTRATION DOCUMENTATION ENROLLMENT RENEWAL SCHOOL YEAR STUDENT SCHOOL YEAR NECESSARY DOCUMENTAION OR REGISTRATION ENROLLMENT RENEWAL ACT 01 P IL I I I A I A, I AL A IAL I 02 P A A I I I A I A, I AL

More information

GENETIC ALGORlIHMS WITH AN APPLICATION TO NONLINEAR TRANSPORTATION PROBLEMS

GENETIC ALGORlIHMS WITH AN APPLICATION TO NONLINEAR TRANSPORTATION PROBLEMS 101 GENETIC ALGORlIHMS WITH AN APPLICATION TO NONLINEAR TRANSPORTATION PROBLEMS MATTHEW HOBBS ISOR, VICTORIA UNIVERSITY WELLINGTON Abstract In this paper I will describe the theory and implementation of

More information

OR D ER FOR SUPPLIES OR SER VICES

OR D ER FOR SUPPLIES OR SER VICES OR D ER FOR SUPPLIES OR SER VICES P AGE 1 OF 8 1. CO N TRA CT/P U RCH. O RD E R/ A G RE E M E N T N O. 2. D E L IVE RY O RD E R/ CA L L N O. 3. D A TE O F O RD E R/CA L L ( YYYYM M M D D ) 2014 May 23

More information

c. What is the average rate of change of f on the interval [, ]? Answer: d. What is a local minimum value of f? Answer: 5 e. On what interval(s) is f

c. What is the average rate of change of f on the interval [, ]? Answer: d. What is a local minimum value of f? Answer: 5 e. On what interval(s) is f Essential Skills Chapter f ( x + h) f ( x ). Simplifying the difference quotient Section. h f ( x + h) f ( x ) Example: For f ( x) = 4x 4 x, find and simplify completely. h Answer: 4 8x 4 h. Finding the

More information

Benchm ar k One St ud y Guid e: Science Benchm ar k Wed. Oct. 2nd

Benchm ar k One St ud y Guid e: Science Benchm ar k Wed. Oct. 2nd Benchm ar k One St ud y Guid e: Science Benchm ar k Wed. Oct. 2nd Char act er ist ics of Science: 1. What is a gr ad uat ed cylind er used t o m easur e? Volum e of a liq uid (Cap acit y) 2. Exp lain how

More information

ID: V i e w A l l F i r s t 1 of 1 L a s t

ID: V i e w A l l F i r s t 1 of 1 L a s t ID: Academ ic Adv isem ent University of New Orleans Undergraduate This report last generated on 07/22/2014 2:11PM collapse all expand all view report as pdf Taken In Progress Planned Dis claim e r [RG:

More information

Use precise language and domain-specific vocabulary to inform about or explain the topic. CCSS.ELA-LITERACY.WHST D

Use precise language and domain-specific vocabulary to inform about or explain the topic. CCSS.ELA-LITERACY.WHST D Lesson seven What is a chemical reaction? Science Constructing Explanations, Engaging in Argument and Obtaining, Evaluating, and Communicating Information ENGLISH LANGUAGE ARTS Reading Informational Text,

More information

Chapter 5 Solutions. Problem 5.1

Chapter 5 Solutions. Problem 5.1 Chapter 5 Solutions Problem 5. Since X = X X 2 X 3 takes on the values,,, with equal probability, it follows that P Xi () = P Xi () = /2, i =, 2, 3. Furthermore, P X X 2 () = P X X 2 () = P X X 2 () =

More information

Chapter 5 Workshop on Fitting of Linear Data

Chapter 5 Workshop on Fitting of Linear Data Chapter 5 Workshop on Fitting of Linear Data (Contributed by E.L. Allen, SJSU) 5.0 Learning Objectives After successfully com pleting this laboratory workshop, including the assigned reading, the lab repot

More information

Basic Semantics of Prolog. CAS 706 Program m ing Language. Xinjun Wu mcmaster.ca

Basic Semantics of Prolog. CAS 706 Program m ing Language. Xinjun Wu mcmaster.ca Basic Semantics of Prolog CAS 706 Program m ing Language Xinjun Wu 0326680 wux8@ mcmaster.ca Basic Sem antics ofprolog Logic Program m ing Language 1 Preface Logical programming or constraint programming

More information

THIS PAGE DECLASSIFIED IAW EO IRIS u blic Record. Key I fo mation. Ma n: AIR MATERIEL COMM ND. Adm ni trative Mar ings.

THIS PAGE DECLASSIFIED IAW EO IRIS u blic Record. Key I fo mation. Ma n: AIR MATERIEL COMM ND. Adm ni trative Mar ings. T H S PA G E D E CLA SSFED AW E O 2958 RS u blc Recod Key fo maon Ma n AR MATEREL COMM ND D cumen Type Call N u b e 03 V 7 Rcvd Rel 98 / 0 ndexe D 38 Eneed Dae RS l umbe 0 0 4 2 3 5 6 C D QC d Dac A cesson

More information

Part 2: Video Coding Techniques

Part 2: Video Coding Techniques art 2: Video Coding Techniques Outline Vincent Roca and Christoph Neumann {firstname.name}@inrialpes.fr lanète project; INRIA Rhône-Alpes MIS 03, Napoli, November 2003 Copyright 2003, INRIA; all rights

More information

On the M in imum Spann ing Tree Determ ined by n Poin ts in the Un it Square

On the M in imum Spann ing Tree Determ ined by n Poin ts in the Un it Square Vol. 14 No. CH INESE QUARTERLY JOURNAL OF M ATHEM ATICS June 1999 On the M in imum Spann ing Tree Determ ined by n Poin ts in the Un it Square Ye J ichang ( ) Xu Yinfeng ( ) Xu Chengxian ( ) (X iπan J

More information

Contents. Samsung Pay W hat I s I t? Samsung Pay D et ails Card Regist rat ion-relat ed Q uest ions... 4

Contents. Samsung Pay W hat I s I t? Samsung Pay D et ails Card Regist rat ion-relat ed Q uest ions... 4 Samsung Pay Contents Samsung Pay W hat I s I t?... 3 Samsung Pay D et ails... 4 Card Regist rat ion-relat ed Q uest ions... 4 Securit y -Relat ed Q uest ions... 5 T echnical-relat ed Q uest ions... 6 Part

More information

What are S M U s? SMU = Software Maintenance Upgrade Software patch del iv ery u nit wh ich once ins tal l ed and activ ated prov ides a point-fix for

What are S M U s? SMU = Software Maintenance Upgrade Software patch del iv ery u nit wh ich once ins tal l ed and activ ated prov ides a point-fix for SMU 101 2 0 0 7 C i s c o S y s t e m s, I n c. A l l r i g h t s r e s e r v e d. 1 What are S M U s? SMU = Software Maintenance Upgrade Software patch del iv ery u nit wh ich once ins tal l ed and activ

More information

Building Harmony and Success

Building Harmony and Success Belmont High School Quantum Building Harmony and Success October 2016 We acknowledge the traditional custodians of this land and pay our respects to elders past and present Phone: (02) 49450600 Fax: (02)

More information

o Alphabet Recitation

o Alphabet Recitation Letter-Sound Inventory (Record Sheet #1) 5-11 o Alphabet Recitation o Alphabet Recitation a b c d e f 9 h a b c d e f 9 h j k m n 0 p q k m n 0 p q r s t u v w x y z r s t u v w x y z 0 Upper Case Letter

More information

Internet-assisted Chinese-English Dictionary Compilation

Internet-assisted Chinese-English Dictionary Compilation East China Normal University From the SelectedWorks of Gang Zhao Spring March 10, 2005 Internet-assisted Chinese-English Dictionary Compilation Gang Zhao, East China Normal University Available at: https://works.bepress.com/gang_zhao1/1/

More information

MAST ACADEMY OUTREACH. WOW (Weather on Wheels)

MAST ACADEMY OUTREACH. WOW (Weather on Wheels) MAST ACADEMY OUTREACH ELEMENTARY PROGRAM Adventures Aboard WOW (Weather on Wheels) Post-Site Packet MAST Academy Maritime and Science Technology High School Miami-Dade County Public Schools Miami, Florida

More information

Gen ova/ Pavi a/ Ro ma Ti m i ng Count er st at Sep t. 2004

Gen ova/ Pavi a/ Ro ma Ti m i ng Count er st at Sep t. 2004 Ti m i ng Count er st at us @ Sep t. 2004 1 Ti m i n g Cou n t er act i vi t i es Ti m i n g r esol u t i on : 100 p s FWHM h ave b een ach i eved. PM s ch ar act er ised i n t h e COBRA m ag n et f or

More information

Real Gas Equation of State for Methane

Real Gas Equation of State for Methane Kaliningrad 2012 1. Commission Regulation (EC) No 692/2008 of 18 July 2008. http://ec.europa.eu/enterprise/sectors/automotive/environment/eurovi/index_ en. htm, p. 130. 2. Payne J. F. B., Skyrme G. Int.

More information

Applying Metrics to Rule-Based Systems

Applying Metrics to Rule-Based Systems Applying Metrics to Rule-Based Systems A Thesis by: Supervisor: Paul D oyle, B.Sc. M r. Renaat Verbruggen Subm itted to D ublin C ity U niversity C om puter A pplications for the degree o f M a s te r

More information

BOGOLIUBOV LABORATORY OF THEORETICAL PHYSICS. Theoretical Physics at BLTP. Precision tests of the Standard Model at LHC

BOGOLIUBOV LABORATORY OF THEORETICAL PHYSICS. Theoretical Physics at BLTP. Precision tests of the Standard Model at LHC BOGOLIUBOV LABORATORY OF THEORETICAL PHYSICS Theoretical Physics at BLTP. Precision tests of the Standard Model at LHC Dubna, Russia, July 1, 2008 Nikola i N ik ola e vich Bog oliubov ( 1 9 0 9 1 9 9 2

More information

Growth of A lgan f ilm s w ith d ifferen t A l fraction on A ln tem pla te

Growth of A lgan f ilm s w ith d ifferen t A l fraction on A ln tem pla te 15 6 Vol115, No16 2009 12 JOURNAL OF FUNCTIONAL MATER IALS AND DEV ICES Dec., 2009 : 1007-4252 (2009) 06-0575 - 06 AlN Al AlGaN,, (, 710071;,, 710071) : 200nm A ln, XRD 130arcsec, 2. 021nm A ln A l A lgan,

More information

Grain Reserves, Volatility and the WTO

Grain Reserves, Volatility and the WTO Grain Reserves, Volatility and the WTO Sophia Murphy Institute for Agriculture and Trade Policy www.iatp.org Is v o la tility a b a d th in g? De pe n d s o n w h e re yo u s it (pro d uc e r, tra d e

More information

Beechwood Music Department Staff

Beechwood Music Department Staff Beechwood Music Department Staff MRS SARAH KERSHAW - HEAD OF MUSIC S a ra h K e rs h a w t r a i n e d a t t h e R oy a l We ls h C o l le g e of M u s i c a n d D ra m a w h e re s h e ob t a i n e d

More information

Few thoughts on PFA, from the calorim etric point of view

Few thoughts on PFA, from the calorim etric point of view 1 Few thoughts on PFA, from the calorim etric point of view discussing pad siz e, M oliere radius, distance from the interaction point. H enri Videau 2 H ave you had anytim e a close view at show ers?

More information

On my honor, as an Aggie, I have neither given nor received unauthorized aid on this academic work

On my honor, as an Aggie, I have neither given nor received unauthorized aid on this academic work Lab 5 : Linking Name: Sign the following statement: On my honor, as an Aggie, I have neither given nor received unauthorized aid on this academic work 1 Objective The main objective of this lab is to experiment

More information

INTERIM MANAGEMENT REPORT FIRST HALF OF 2018

INTERIM MANAGEMENT REPORT FIRST HALF OF 2018 INTERIM MANAGEMENT REPORT FIRST HALF OF 2018 F r e e t r a n s l a t ion f r o m t h e o r ig ina l in S p a n is h. I n t h e e v e n t o f d i s c r e p a n c y, t h e Sp a n i s h - la n g u a g e v

More information

Results as of 30 September 2018

Results as of 30 September 2018 rt Results as of 30 September 2018 F r e e t r a n s l a t ion f r o m t h e o r ig ina l in S p a n is h. I n t h e e v e n t o f d i s c r e p a n c y, t h e Sp a n i s h - la n g u a g e v e r s ion

More information

Presented by Arkajit Dey, Matthew Low, Efrem Rensi, Eric Prawira Tan, Jason Thorsen, Michael Vartanian, Weitao Wu.

Presented by Arkajit Dey, Matthew Low, Efrem Rensi, Eric Prawira Tan, Jason Thorsen, Michael Vartanian, Weitao Wu. Presented by Arkajit Dey, Matthew Low, Efrem Rensi, Eric Prawira Tan, Jason Thorsen, Michael Vartanian, Weitao Wu. I ntroduction Transient Chaos Sim ulation and Anim ation Return Map I Return Map I I Modified

More information

INS TITU TE O F CLINICAL CH E M IS TR Y AND LABO R ATO R Y

INS TITU TE O F CLINICAL CH E M IS TR Y AND LABO R ATO R Y INS TITU TE O F CLINICAL CH E M IS TR Y AND LABO R ATO R Y M E D ICINE FACTS AND FIGURES Ins titute of ClinicalCh e m is try and Laboratory M e dicine Fe rdinand- Saue rbruch - Straße 17475 Gre ifs w ald

More information

[ZB HASTINGS SUMMARY ESTABLISHMENTPHASE. AuroraDistrib ute d Solar,LLC 12/1/2017 Page 1of 4 Re vision 0. Ge ne ralcom m e nts

[ZB HASTINGS SUMMARY ESTABLISHMENTPHASE. AuroraDistrib ute d Solar,LLC 12/1/2017 Page 1of 4 Re vision 0. Ge ne ralcom m e nts Ge ne ralcom m e nts 890 892 Se e d ing forthe site wascond ucte d 6/22/2017to 7/5/2017. B7 A8 A9 A10 A11 A12 A13 A14 888 Good e stab lishm e ntof native p lants,e sp e cially grasse s,ob se rve d in O

More information

EC 219 SA M PLING AND INFERENCE. One and One HalfH ours (1 1 2 H ours) Answerallparts ofquestion 1,and ONE other question.

EC 219 SA M PLING AND INFERENCE. One and One HalfH ours (1 1 2 H ours) Answerallparts ofquestion 1,and ONE other question. ECONOM ICS EC 219 SA M PLING AND INFERENCE One and One HalfH ours (1 1 2 H ours) Answerallparts ofquestion 1,and ONE other question. M athem aticaland Statisticaltables are provided. An approved calculatormay

More information

Origami: Folding Warps for Energy Efficient GPUs

Origami: Folding Warps for Energy Efficient GPUs Origami: Folding Warps for Energy Efficient GPUs Mohammad Abdel-Majeed*, Daniel Wong, Justin Huang and Murali Annavaram* * University of Southern alifornia University of alifornia, Riverside Stanford University

More information

I AM ASLEEP. 1. A nostalgia fo r Being. 2. The life force

I AM ASLEEP. 1. A nostalgia fo r Being. 2. The life force I AM ASLEEP 1. A nostalgia fo r Being M an rem ains a m ystery to him self. H e has a nostalgia for Being, a longing for duration, for perm anence, for absoluteness a lon gin g to be. Yet everyth in g

More information

SPU TTERIN G F R O M A LIQ U ID -PH A SE G A -IN EUTECTIC ALLOY KEVIN M A R K H U B B A R D YALE UNIVER SITY M A Y

SPU TTERIN G F R O M A LIQ U ID -PH A SE G A -IN EUTECTIC ALLOY KEVIN M A R K H U B B A R D YALE UNIVER SITY M A Y SPU TTERIN G F R O M A LIQ U ID -PH A SE G A -IN EUTECTIC ALLOY KEVIN M A R K H U B B A R D YALE UNIVER SITY M A Y 1 9 8 9 ABSTRACT S p u t t e r i n g f r o m a L i q u i d - P h a s e G a - I n E u t

More information

BER KELEY D AV IS IR VINE LOS AN GELES RIVERS IDE SAN D IEGO S AN FRANCISCO

BER KELEY D AV IS IR VINE LOS AN GELES RIVERS IDE SAN D IEGO S AN FRANCISCO UN IVERSIT Y O F CA LIFO RNI A AT BERKELEY BER KELEY D AV IS IR VINE LOS AN GELES RIVERS IDE SAN D IEGO S AN FRANCISCO SAN TA BARBA RA S AN TA CRUZ De p a r tm en t of Ele ctr i ca l En gin e e rin g a

More information

Per cent Wor d Pr oblems

Per cent Wor d Pr oblems Per cent Wor d Pr oblems Ratio and proportion method Her e ar e sever al aids t hat will help you solve wor d pr oblems: 1. Make sur e you under st and t he quest ion t hat is asked 2. Sor t out t he inf

More information

Me n d e l s P e a s Exer c i se 1 - Par t 1

Me n d e l s P e a s Exer c i se 1 - Par t 1 !! Me n d e l s P e a s Exer c i se 1 - Par t 1 TR UE - BR E E D I N G O R G A N I S M S Go a l In this exercise you will use StarGenetics, a genetics experiment simulator, to understand the concept of

More information

M a rtin H. B r e e n, M.S., Q u i T. D a n g, M.S., J o se p h T. J a in g, B.S., G reta N. B o y d,

M a rtin H. B r e e n, M.S., Q u i T. D a n g, M.S., J o se p h T. J a in g, B.S., G reta N. B o y d, The effect of a one for the road drink of hard liquor, beer or wine on peak breath alcohol concentration in a social drinking environment with food consumption M a rtin H. B r e e n, M.S., Q u i T. D a

More information

High Performance Multiscale Simulation for Crack Propagation

High Performance Multiscale Simulation for Crack Propagation 1 High Performance Multiscale Simulation for Crack Propagation Guillaume Anciaux, Olivier Coulaud and Jean Roman ScAlApplix Project HPSEC 2006-18th August 2 Outline 1. Introduction Motivations State of

More information

K owi g yourself is the begi i g of all wisdo.

K owi g yourself is the begi i g of all wisdo. I t odu tio K owi g yourself is the begi i g of all wisdo. A istotle Why You Need Insight Whe is the last ti e ou a e e e taki g ti e to thi k a out ou life, ou alues, ou d ea s o ou pu pose i ei g o this

More information