Size: px
Start display at page:

Download ""

Transcription

1 Cnsideratin fr Optimizatin: Optimizatin is a prgram transfrmatin technique, which tries t imprve the cde by making it cnsume fewer resurces (i.e. CPU, Memry) and deliver high speed. In ptimizatin, high-level general prgramming cnstructs are replaced by very efficient lw-level prgramming cdes. A cde ptimizing prcess must fllw the three rules given belw: The utput cde must nt, in any way, change the meaning f the prgram. Optimizatin shuld increase the speed f the prgram and if pssible, the prgram shuld demand less number f resurces. Optimizatin shuld itself be fast and shuld nt delay the verall cmpiling prcess. Optimizatin can be categrized bradly int tw types: machine independent and machine dependent. Machine-Independent Optimizatin Intermediate cde generatin prcess intrduces many inefficiencies: Extra cpies f variables, using variables instead f cnstants, repeated evaluatin f expressins, etc. Cde ptimizatin remves such inefficiencies and imprves cde. Imprvement may be time, space, r pwer cnsumptin. It changes the structure f prgrams, smetimes f beynd recgnitin. Inlines functins, unrlls lps, eliminates sme prgrammer-defined variables, etc. Cde ptimizatin cnsists f a bunch f heuristics and percentage f imprvement depends n prgrams (may be zer als) Machine-dependent Optimizatin Machine-dependent ptimizatin is dne after the target cde has been generated and when the cde is transfrmed accrding t the target machine architecture. It invlves CPU registers and may have abslute memry references rather than relative references. Machinedependent ptimizers put effrts t take maximum advantage f memry hierarchy. Basic Blcks

2 Surce cdes generally have a number f instructins, which are always executed in sequence and are cnsidered as the basic blcks f the cde. These basic blcks d nt have any jump statements amng them, i.e., when the first instructin is executed, all the instructins in the same basic blck will be executed in their sequence f appearance withut lsing the flw cntrl f the prgram. A prgram can have varius cnstructs as basic blcks, like IF-THEN-ELSE, SWITCH- CASE cnditinal statements and lps such as DO-WHILE, FOR, and REPEAT-UNTIL, etc. Basic Blck Identificatin: We may use the fllwing algrithm t find the basic blcks in a prgram: Search header statements f all the basic blcks frm where a basic blck starts: First statement f a prgram. Statements that are target f any branch (cnditinal/uncnditinal). Statements that fllw any branch statement. Header statements and the statements fllwing them frm a basic blck. A basic blck des nt include any header statement f any ther basic blck. Basic blcks are imprtant cncepts frm bth cde generatin and ptimizatin pint f view

3 Basic blcks play an imprtant rle in identifying variables, which are being used mre than nce in a single basic blck. If any variable is being used mre than nce, the register memry allcated t that variable need nt be emptied unless the blck finishes executin. Cntrl Flw Graph Basic blcks in a prgram can be represented by means f cntrl flw graphs. A cntrl flw graph depicts hw the prgram cntrl is being passed amng the blcks. It is a useful tl that helps in ptimizatin by help lcating any unwanted lps in the prgram. Lcal Optimizatin: Optimizatins perfrmed exclusively within a basic blck are called "lcal ptimizatins". These are typically the easiest t perfrm since we d nt cnsider any cntrl flw infrmatin; we just wrk with the statements within the blck. Many f the lcal ptimizatins we will discuss have crrespnding glbal ptimizatins that perate n the same principle, but require additinal analysis t perfrm. Lp Optimizatin Mst prgrams run as a lp in the system. It becmes necessary t ptimize the lps in rder t save CPU cycles and memry. Lps can be ptimized by the fllwing techniques:

4 Invariant cde: A fragment f cde that resides in the lp and cmputes the same value at each iteratin is called a lp-invariant cde. This cde can be mved ut f the lp by saving it t be cmputed nly nce, rather than with each iteratin. Inductin analysis: A variable is called an inductin variable if its value is altered within the lp by a lp-invariant value. Strength reductin: There are expressins that cnsume mre CPU cycles, time, and memry. These expressins shuld be replaced with cheaper expressins withut cmprmising the utput f expressin. Fr example, multiplicatin (x * 2) is expensive in terms f CPU cycles than (x << 1) and yields the same result. Dead-cde Eliminatin Dead cde is ne r mre than ne cde statements, which are: Either never executed r unreachable, Or if executed, their utput is never used. Thus, dead cde plays n rle in any prgram peratin and therefre it can simply be eliminated. Partially dead cde There are sme cde statements whse cmputed values are used nly under certain circumstances, i.e., smetimes the values are used and smetimes they are nt. Such cdes are knwn as partially dead-cde. The abve cntrl flw graph depicts a chunk f prgram where variable a is used t assign the utput f expressin x * y. Let us assume that the value assigned t a is never used inside the lp. Immediately after the cntrl leaves the lp, a is assigned the value f variable z, which wuld be used later in the prgram. We cnclude here that the assignment cde f a is never used anywhere, therefre it is eligible t be eliminated.

5 Likewise, the picture abve depicts that the cnditinal statement is always false, implying that the cde, written in true case, will never be executed, hence it can be remved. Partial Redundancy Redundant expressins are cmputed mre than nce in parallel path, withut any change in perands whereas partial-redundant expressins are cmputed mre than nce in a path, withut any change in perands. Fr example, [redundant expressin] [partially redundant expressin] Lp-invariant cde is partially redundant and can be eliminated by using a cde-mtin technique. Anther example f a partially redundant cde can be:

6 If (cnditin) a = y OP z; else c = y OP z; We assume that the values f perands (y and z) are nt changed frm assignment f variable a t variable c. Here, if the cnditin statement is true, then y OP z is cmputed twice, therwise nce. Cde mtin can be used t eliminate this redundancy, as shwn belw: If (cnditin) else tmp = y OP z; a = tmp; tmp = y OP z; c = tmp; Here, whether the cnditin is true r false; y OP z shuld be cmputed nly nce. Directed Acyclic Graph Directed Acyclic Graph (DAG) is a tl that depicts the structure f basic blcks, helps t see the flw f values flwing amng the basic blcks, and ffers ptimizatin t. DAG prvides easy transfrmatin n basic blcks. DAG can be understd here: Leaf ndes represent identifiers, names r cnstants.

7 Interir ndes represent peratrs. Interir ndes als represent the results f expressins r the identifiers/name where the values are t be stred r assigned. Example: t 0 = a + b t 1 = t 0 + c d = t 0 + t 1 [t 0 = a + b] [t 1 = t 0 + c] [d = t 0 + t 1 ]

Model-driven Reengineering for a Blue Planet - Refactoring for Energy Efficiency -

Model-driven Reengineering for a Blue Planet - Refactoring for Energy Efficiency - Mdel-driven Reengineering fr a Blue Planet - Refactring fr Energy Efficiency - Andreas Winter jint wrk with Marin Gttschalk Jan Jelschen Mirc Jsefik 11.10.2012 STeSLa 2012 1 "Energy Turnarund" nt far away

More information

EXPLORING THE PROCESS OF ASSESSMENT AND OTHER RELATED CONCEPTS

EXPLORING THE PROCESS OF ASSESSMENT AND OTHER RELATED CONCEPTS 1 SECTION 1 INTRODUCTION: EXPLORING THE PROCESS OF ASSESSMENT AND OTHER RELATED CONCEPTS The Nature Of Assessment The Definitin Of Assessment The Difference Between Testing, Measurement And Evaluatin Characteristics

More information

Record of Revisions to Patient Tracking Spreadsheet Template

Record of Revisions to Patient Tracking Spreadsheet Template Recrd f Revisins t Patient Tracking Spreadsheet Template Belw is a recrd f revisins made by the AIMS Center t the Patient Tracking Spreadsheet Template. The purpse f this dcument is t infrm spreadsheet

More information

CSE 331, Spring 2000

CSE 331, Spring 2000 YOUR NAME: SECTION NUMBER: CSE 331, Spring 2000 Class Exercise 15 Algrithm Design Techniques-Greedy Algrithms March 13, 2000 Fllwing are five f the cmmn types f algrithms. Fr many prblems it is quite likely

More information

HIS Registry of Ministry Resources

HIS Registry of Ministry Resources HIS Registry f Ministry Resurces Date: 2006-10-11 Status: Abstract: Editr: Changes since previus versin: Adpted Registry This registry is adpted by the HIS Stewards and ready fr use by members f the HIS

More information

How to become an AME Online

How to become an AME Online Hw t becme an AME Online 1. Check that yu meet the minimum technical requirements in rder t use the AME Online system: Operating System: Windws Vista (Service Pack 2) Windws 7 Windws 8, 8.1 Windws 10 Please

More information

Breast Cancer Awareness Month 2018 Key Messages (as of June 6, 2018)

Breast Cancer Awareness Month 2018 Key Messages (as of June 6, 2018) Breast Cancer Awareness Mnth 2018 Key Messages (as f June 6, 2018) In this dcument there are tw sectins f messages in supprt f Cancer Care Ontari s Breast Cancer Awareness Mnth 2018: 1. Campaign key messages

More information

Code of employment practice on infant feeding

Code of employment practice on infant feeding Cde f emplyment practice n infant feeding An Emplyer s guide t: Sectin 69Y f the Emplyment Relatins Act 2000 Frewrd As Minister f Labur, I am pleased t publish the Cde f Emplyment Practice n Infant Feeding.

More information

FUNCTIONAL MOVEMENT SYSTEMS SCREEN FINDINGS REPORT

FUNCTIONAL MOVEMENT SYSTEMS SCREEN FINDINGS REPORT FUNCTIONA MOVEMENT SYSTEMS SCEEN FINDINGS EPOT Screening Date: Client: FMS Certified Member: FMS Scre: 09/0/1 04:15 PM Glenn D'Avanz Elizabeth Carus 17 Descriptin: FMS screen fr Glenn D'Avanz FUNCTIONA

More information

(Please text me on once you have submitted your request online and the cell number you used)

(Please text me on once you have submitted your request online and the cell number you used) Dear Thank yu fr yur email, nted. Belw steps n hw t register as a service prvider. Please nte that nce yu have requested t becme a service prvider, yu need t sms/what s up me n 0826392585, in rder t activate

More information

The principles of evidence-based medicine

The principles of evidence-based medicine The principles f evidence-based medicine By the end f this mdule yu shuld be able t: Describe what evidence based medicine is Knw where t find quality evidenced based medicine n the internet Be able t

More information

A foot x-ray series is required only if there is pain in the midfoot zone and any one of the following:

A foot x-ray series is required only if there is pain in the midfoot zone and any one of the following: RADIOGRAPHY OF THE ANKLE AND FOOT (OTTAWA ANKLE RULES) Clinical Practice Guideline January 2007 This guideline has been adapted frm the Ottawa Ankle Rules develped by Dr. Ian Stiell et al. Dr. Stiell received

More information

Q 5: Is relaxation training better (more effective than/as safe as) than treatment as usual in adults with depressive episode/disorder?

Q 5: Is relaxation training better (more effective than/as safe as) than treatment as usual in adults with depressive episode/disorder? updated 2012 Relaxatin training Q 5: Is relaxatin training better (mre effective than/as safe as) than treatment as usual in adults with depressive episde/disrder? Backgrund The number f general health

More information

P02-03 CALA Program Description Proficiency Testing Policy for Accreditation Revision 1.9 July 26, 2017

P02-03 CALA Program Description Proficiency Testing Policy for Accreditation Revision 1.9 July 26, 2017 P02-03 CALA Prgram Descriptin Prficiency Testing Plicy fr Accreditatin Revisin 1.9 July 26, 2017 P02-03 CALA Prgram Descriptin Prficiency Testing Plicy fr Accreditatin TABLE OF CONTENTS TABLE OF CONTENTS...

More information

University College Hospital. Pump school Starting on an insulin pump. Children and Young People s Diabetes Service

University College Hospital. Pump school Starting on an insulin pump. Children and Young People s Diabetes Service University Cllege Hspital Pump schl Starting n an insulin pump Children and Yung Peple s Diabetes Service 2 If yu wuld like this dcument in anther language r frmat, r require the services f an interpreter,

More information

FOUNDATIONS OF DECISION-MAKING...

FOUNDATIONS OF DECISION-MAKING... Table f Cntents FOUNDATIONS OF DECISION-MAKING... Errr! Bkmark nt Describe the decisin-making prcess pp.62-66... Errr! Bkmark nt Explain the three appraches managers can use t make decisins pp.67-70 Errr!

More information

BROCKTON AREA MULTI-SERVICES, INC. MEDICAL PROCEDURE GUIDE. Date(s) Reviewed/Revised:

BROCKTON AREA MULTI-SERVICES, INC. MEDICAL PROCEDURE GUIDE. Date(s) Reviewed/Revised: Page 1 f 6 Subject: Range f Mtin Exercises Date Develped: 4/2010 PROTOCOL FOR: All trained staff PURPOSE: Range f Mtin (ROM) exercises are very imprtant if an individual has t stay in bed r in a wheelchair.

More information

Building Code 101 OWMC November 20, Ministry of Municipal Affairs and Housing

Building Code 101 OWMC November 20, Ministry of Municipal Affairs and Housing Building Cde 101 OWMC Nvember 20, 2015 Ministry f Municipal Affairs and Husing Disclaimer These slides are prvided by the Ministry f Municipal Affairs and Husing fr cnvenience nly The slides shuld nt be

More information

A Phase I Study of CEP-701 in Patients with Refractory Neuroblastoma NANT (01-03) A New Approaches to Neuroblastoma Therapy (NANT) treatment protocol.

A Phase I Study of CEP-701 in Patients with Refractory Neuroblastoma NANT (01-03) A New Approaches to Neuroblastoma Therapy (NANT) treatment protocol. SAMPLE INFORMED CONSENT A Phase I Study f CEP-701 in Patients with Refractry Neurblastma NANT (01-03) A New Appraches t Neurblastma Therapy (NANT) treatment prtcl. The wrd yu used thrughut this dcument

More information

Candida March, Ines Smyth, and Maitrayee Mukhopadhyay, 1999, A Guide to Gender-Analysis Frameworks, London: Oxfam Publishing.

Candida March, Ines Smyth, and Maitrayee Mukhopadhyay, 1999, A Guide to Gender-Analysis Frameworks, London: Oxfam Publishing. GENDER ANALYSIS FRAMEWORKS There are many mdels and framewrks. N single framewrk prvides an apprpriate way t address all develpment issues Each mdel reflects a set f assumptins abut what gender means and

More information

MGPR Training Courses Guide

MGPR Training Courses Guide MGPR Training Curses Guide fiscal cde 92107050921 1. Descriptin The training prgram supprted by MGPR is prpsed by a grup f excellent mentrs/educatrs, accmplished in Pesticides Management and Analysis,

More information

Structured Assessment using Multiple Patient. Scenarios (StAMPS) Exam Information

Structured Assessment using Multiple Patient. Scenarios (StAMPS) Exam Information Structured Assessment using Multiple Patient Scenaris (StAMPS) Exam Infrmatin 1. Preparing fr the StAMPS assessment prcess StAMPS is an assessment mdality that is designed t test higher rder functins in

More information

Implementation of G6PD testing and radical cure in P. vivax endemic countries: considerations

Implementation of G6PD testing and radical cure in P. vivax endemic countries: considerations Implementatin f G6PD testing and radical cure in P. vivax endemic cuntries: cnsideratins Malaria Plicy Advisry Cmmittee Geneva, Switzerland 16-18 September 2015 1 WHO Guidelines n Radical Cure WHO guidelines

More information

The Mental Capacity Act 2005; a short guide for the carers and relatives of those who may need support. Ian Burgess MCA Lead 13 February 2017

The Mental Capacity Act 2005; a short guide for the carers and relatives of those who may need support. Ian Burgess MCA Lead 13 February 2017 The Mental Capacity Act 2005; a shrt guide fr the carers and relatives f thse wh may need supprt Ian Burgess MCA Lead 13 February 2017 Agenda Overview f the MCA The 5 Principles and the legal definitin

More information

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 NATIONAL SENIOR CERTIFICATE GRADE 12 INFORMATION TECHNOLOGY P1 FEBRUARY/MARCH 2015 MARKS: 150 TIME: 3 hurs This questin paper cnsists f 19 pages. Infrmatin Technlgy/P1 2 DBE/Feb. Mar. 2015 INSTRUCTIONS

More information

Commun. Theor. Phys. (Beijing, China) 38 (2002) pp. 555{560 c International Academic Publishers Vol. 38, No. 5, November 15, 2002 Capability Analysis

Commun. Theor. Phys. (Beijing, China) 38 (2002) pp. 555{560 c International Academic Publishers Vol. 38, No. 5, November 15, 2002 Capability Analysis Cmmun. Ther. Phys. (Beijing, China) 38 (2002) pp. 555{560 c Internatinal Academic Publishers Vl. 38, N. 5, Nvember 15, 2002 Capability Analysis f Chatic Mutatin and Its Self-Adaptin YANG Li-Jiang and CHEN

More information

CONSENT FOR KYBELLA INJECTABLE FAT REDUCTION

CONSENT FOR KYBELLA INJECTABLE FAT REDUCTION CONSENT FOR KYBELLA INJECTABLE FAT REDUCTION INSTRUCTIONS This is an infrmed cnsent dcument which has been prepared t help yur Dctr infrm yu cncerning fat reductin with an injectable medicatin, its risks,

More information

2017 CMS Web Interface

2017 CMS Web Interface CMS Web Interface PREV-5 (NQF 2372): Breast Cancer Screening Measure Steward: NCQA Web Interface V1.0 Page 1 f 18 11/15/2016 Cntents INTRODUCTION... 3 WEB INTERFACE SAMPLING INFORMATION... 4 BENEFICIARY

More information

AP Biology Lab 12: Introduction to the Scientific Method and Animal Behavior

AP Biology Lab 12: Introduction to the Scientific Method and Animal Behavior Name: AP Bilgy Lab 12: Intrductin t the Scientific Methd and Animal Behavir Overview In this lab yu will: -Observe an rganism and design an experiment t investigate their respnses t envirnmental variables.

More information

1.11 INSULIN INFUSION PUMP MANAGEMENT INPATIENT

1.11 INSULIN INFUSION PUMP MANAGEMENT INPATIENT WOMEN AND NEWBORN HEALTH SERVICE CLINICAL GUIDELINES SECTION A: GUIDELINES RELEVANT TO OBSTETRICS AND GYNAECOLOGY 1 STANDARD PROTOCOLS 1.11 INSULIN INFUSION PUMP MANAGEMENT - INPATIENT Authrised by: OGCCU

More information

Data Fusion for Predicting Breast Cancer Survival

Data Fusion for Predicting Breast Cancer Survival Data Fusin fr Predicting Breast Cancer Linbailu Jiang, Yufei Zhang, Siyi Peng Mentr: Irene Kaplw December 11, 2015 1 Intrductin 1.1 Backgrund Cancer is mre f a severe health issue than ever in ur current

More information

Extended G/L Segment Codes

Extended G/L Segment Codes Extended G/L Segment Cdes Cpy Segment Cdes t ther Sage 300 cmpanies Extended G/L Segment Cdes Extended G/L Segment Cdes is an enhanced replacement fr the Sage G/L Segment Cdes screen. It lets yu cpy segment

More information

SCALES NW HEARING PROTECTION PROGRAM

SCALES NW HEARING PROTECTION PROGRAM PURPOSE Expsure t excessive nise in the wrkplace can cause permanent hearing lss. The Hearing Prtectin Prgram has been established t help ensure that emplyees f Scales NW, Inc. d nt suffer health effects

More information

Success Criteria: Extend your thinking:

Success Criteria: Extend your thinking: Discussin Directr Yur jb is t invlve thers in cnversatin abut the text by getting them t think and talk abut the BIG IDEAS in the chapter/ sectin they have just read. Cmpse 5 questins that yu want t discuss

More information

Module 3. Chapter 5 Microbial Metabolism. Catabolic and Anabolic Reactions Metabolism Two general types of metabolic reactions: o :

Module 3. Chapter 5 Microbial Metabolism. Catabolic and Anabolic Reactions Metabolism Two general types of metabolic reactions: o : Mdule 3 Chapter 5 Micrbial Metablism Catablic and Anablic Reactins Metablism Tw general types f metablic reactins: : : Recall frm Chapter 2: Energy can be when bnds Energy can be when bnds Catablism Purpse

More information

Career Confidence. by Kevin Gaw

Career Confidence. by Kevin Gaw Career Cnfidence by Kevin Gaw In additin t the requisite skills, experiences, and rganizatinal match being sught fr a psitin fr which a candidate is applying, mst emplyers screen fr what I call career

More information

2017 CMS Web Interface

2017 CMS Web Interface CMS Web Interface PREV-6 (NQF 0034): Clrectal Cancer Screening Measure Steward: NCQA Web Interface V1.0 Page 1 f 18 11/15/2016 Cntents INTRODUCTION... 3 WEB INTERFACE SAMPLING INFORMATION... 4 BENEFICIARY

More information

Appendix C. Master of Public Health. Practicum Guidelines

Appendix C. Master of Public Health. Practicum Guidelines Appendix C Master f Public Health Practicum Guidelines 0 Gergia State University, Schl f Public Health Master f Public Health Practicum Guidelines Fr mre infrmatin, cntact Jessica Hwell Pratt, MPH Practicum

More information

2016 CWA Political Action Fund Administrative Procedures Checklist

2016 CWA Political Action Fund Administrative Procedures Checklist 2016 CWA Plitical Actin Fund Administrative Prcedures Checklist 1. Dates f Prgram The 2016 CWA Plitical Actin Fund (federal plitical actin cmmittee- CWA-COPE PCC) Prgram will be cnducted n a calendar year

More information

TABLE OF CONTENTS Glossary of terms Code Pad Diagram 3. Understanding the Code Pad lights.4.

TABLE OF CONTENTS Glossary of terms Code Pad Diagram 3. Understanding the Code Pad lights.4. TABLE OF CONTENTS... Glssary f terms 2... Cde Pad Diagram 3 Understanding the Cde Pad lights.4 Cde Pad tnes 5 Fully arming the system - ON MODE 6 Fully arming the system - Quick Arm MODE 6 Partially arming

More information

Intended Use KontrolFlex Endodontic Rotary Files fit into a dental handpiece allowing the user to perform root canal debridement.

Intended Use KontrolFlex Endodontic Rotary Files fit into a dental handpiece allowing the user to perform root canal debridement. KntrlFlex Enddntic Rtary Files KntrlFlex Enddntic Rtary Files are available Nn-Sterile with varius ISO tip sizes and wrking lengths. The devices are intended t be cleaned and sterilized using steam sterilizatin

More information

Instruction Manual IC ACCESS CONTROL

Instruction Manual IC ACCESS CONTROL Instructin Manual IC ACCESS CONTROL Mde: DH16A-12CT Metal surface and keypads Un-netwrked Mde: DH16A-12CTQ Metal surface and keypads Netwrked Mde: DH16A-50CT/CTN Metal surface and keypads Un-netwrked Mde:

More information

Benefits for Anesthesia Services for the CSHCN Services Program to Change Effective for dates of service on or after July 1, 2008, benefit criteria

Benefits for Anesthesia Services for the CSHCN Services Program to Change Effective for dates of service on or after July 1, 2008, benefit criteria Benefits fr Anesthesia Services fr the CSHCN Services Prgram t Change Effective fr dates f service n r after July 1, 2008, benefit criteria fr anesthesia will change fr the Children with Special Health

More information

The estimator, X, is unbiased and, if one assumes that the variance of X7 is constant from week to week, then the variance of X7 is given by

The estimator, X, is unbiased and, if one assumes that the variance of X7 is constant from week to week, then the variance of X7 is given by ESTIMATION PROCEDURES USED TO PRODUCE WEEKLY FLU STATISTICS FROM THE HEALTH INTERVIEW SURVEY James T. Massey, Gail S. Pe, Walt R. Simmns Natinal Center fr Health Statistics. INTRODUCTION In April 97, the

More information

Bariatric Surgery FAQs for Employees in the GRMC Group Health Plan

Bariatric Surgery FAQs for Employees in the GRMC Group Health Plan Bariatric Surgery FAQs fr Emplyees in the GRMC Grup Health Plan Gergia Regents Medical Center and Gergia Regents Medical Assciates emplyees and eligible dependents wh are in the GRMC Grup Health Plan (Select

More information

Lee County Florida Income Guideline Chart

Lee County Florida Income Guideline Chart NEIGHBORHOOD STABILIZATION PROGRAM OF LEE COUNTY BUYER-RELATED QUESTIONS 1. Why is NSP beneficial t yur buyers? Three key advantages make the NSP Prgram especially attractive t eligible buyers: 1) Investrs

More information

Seeking and Appraising Evidence

Seeking and Appraising Evidence EWMA Educatinal Develpment Prgramme Curriculum Develpment Prject Educatin Mdule: Seeking and Appraising Evidence Latest review: August 2012 Educatin Mdule: Seeking and Appraising Evidence ABOUT THE EWMA

More information

Swindon Joint Strategic Needs Assessment Bulletin

Swindon Joint Strategic Needs Assessment Bulletin Swindn Jint Strategic Needs Assessment Bulletin Swindn Diabetes 2017 Key Pints: This JSNA gives health facts abut peple with diabetes r peple wh might get diabetes in Swindn. This helps us t plan fr medical

More information

US Public Health Service Clinical Practice Guidelines for PrEP

US Public Health Service Clinical Practice Guidelines for PrEP Webcast 1.3 US Public Health Service Clinical Practice Guidelines fr PrEP P R E S ENTED BY: M A R K T H R U N, M D A S S O C I AT E P R O F E S S O R, U N I V E R S I T Y O F C O L O R A D O, D I V I S

More information

BRCA1 and BRCA2 Mutations

BRCA1 and BRCA2 Mutations BRCA1 and BRCA2 Mutatins ROBERT LEVITT, MD JESSICA BERGER-WEISS, MD ADRIENNE POTTS, MD HARTAJ POWELL, MD, MPH COURTNEY LEVENSON, MD LAUREN BURNS, MSN, RN, WHNP OBGYNCWC.COM v Cancer is a cmplex disease

More information

Getting Started. Learning Guide. with Continuous Glucose Monitoring for the MiniMed 530G with Enlite. CGM Foundations

Getting Started. Learning Guide. with Continuous Glucose Monitoring for the MiniMed 530G with Enlite. CGM Foundations Getting Started with Cntinuus Glucse Mnitring fr the MiniMed 530G with Enlite Learning Guide CGM Fundatins Cntinuus Glucse Mnitring Learning Guide MiniMed 530G with Enlite - Cntinuus Glucse Mnitring Settings

More information

Service Change Process. Gateway 1 High-level Proposition. Innovation project name: Patient Self-Monitoring/Management of Warfarin

Service Change Process. Gateway 1 High-level Proposition. Innovation project name: Patient Self-Monitoring/Management of Warfarin Service Change Prcess Gateway 1 High-level Prpsitin Innvatin prject name: Patient Self-Mnitring/Management f Warfarin NHS Bury Please describe the service change being prpsed. Please describe what service(s)

More information

Assessment Field Activity Collaborative Assessment, Planning, and Support: Safety and Risk in Teams

Assessment Field Activity Collaborative Assessment, Planning, and Support: Safety and Risk in Teams Assessment Field Activity Cllabrative Assessment, Planning, and Supprt: Safety and Risk in Teams OBSERVATION Identify a case fr which a team meeting t discuss safety and/r safety planning is needed r scheduled.

More information

NHAIS SIS Communication

NHAIS SIS Communication T: All NHAIS Key Users/Screening Managers Frm: Catherine Rberts SIS Request: T/14528 HSCIC Change Number: 15846 Date: 24/03/2015 Page 1 f 5 Impacted Applicatins: SD screen, Lab Links, MM screen, AJ-CD

More information

UNIT 6. DEVELOPING THREAT/HAZARD-SPECIFIC ANNEXES

UNIT 6. DEVELOPING THREAT/HAZARD-SPECIFIC ANNEXES UNIT 6. DEVELOPING THREAT/HAZARD-SPECIFIC ANNEXES This page intentinally left blank. UNIT INTRODUCTION Visual 6.1 This unit presents infrmatin n annexes that shuld be included in a schl emergency peratins

More information

Meaningful Use Roadmap Stage Edition Eligible Hospitals

Meaningful Use Roadmap Stage Edition Eligible Hospitals Meaningful Use Radmap Stage 1-2011 Editin Eligible Hspitals CPSI is dedicated t making yur transitin t Meaningful Use as seamless as pssible. Therefre, we have cme up with a radmap t assist yu in implementing

More information

ACRIN 6666 Screening Breast US Follow-up Assessment Form

ACRIN 6666 Screening Breast US Follow-up Assessment Form Screening Breast US Fllw-up Assessment Frm N. Instructins: The frm is cmpleted at 12, 24 and 36 mnths pst initial n study mammgraphy and ultrasund by the Radilgist r RA. Reprt all interim infrmatin related

More information

2019 Canada Winter Games Team NT Female Hockey Selection Camp August 16-19, 2018

2019 Canada Winter Games Team NT Female Hockey Selection Camp August 16-19, 2018 2019 Canada Winter Games Team NT Female Hckey Selectin Camp August 16-19, 2018 Strength and Cnditining Recmmendatins As discussed in the Call Fr Players letter, it is critical fr players t get their bdies

More information

Continuous Quality Improvement: Treatment Record Reviews. Third Thursday Provider Call (August 20, 2015) Wendy Bowlin, QM Administrator

Continuous Quality Improvement: Treatment Record Reviews. Third Thursday Provider Call (August 20, 2015) Wendy Bowlin, QM Administrator Cntinuus Quality Imprvement: Treatment Recrd Reviews Third Thursday Prvider Call (August 20, 2015) Wendy Bwlin, QM Administratr Gals f the Presentatin Review the findings f Treatment Recrd Review results

More information

Multi-effects Prostate Therapeutic Apparatus. Product Description:

Multi-effects Prostate Therapeutic Apparatus. Product Description: Multi-effects Prstate Therapeutic Apparatus Cntact:qkmedical@htmail.cm Prduct Descriptin: The 1022 series f multi-effects prstate therapeutic apparatus was invented by experts in medicine, electrnics and

More information

CRANIOFACIAL RESECTION

CRANIOFACIAL RESECTION CRANIOFACIAL RESECTION This infrmatin aims t help yu understand the peratin, what is invlved and sme cmmn cmplicatins that may ccur. It may help answer sme f yur questins and help yu think f ther questins

More information

EMC believes the information in this publication is accurate as of its publication date. The information is subject to change without notice.

EMC believes the information in this publication is accurate as of its publication date. The information is subject to change without notice. EMC DATA PROTECTION ADVISOR (DPA) MIGRATION TECH NOTE With SQL as external database fr t 5.5.1 and later DPA versin 5.x releases t 6.0 SP1 and later ABSTRACT This Tech Nte prvides the steps t migrate frm

More information

Specifically, on page 12 of the current evicore draft, we find the statement:

Specifically, on page 12 of the current evicore draft, we find the statement: Octber 23, 2016 evicre Healthcare Attn: Dr Greg Allen 400 Buckwalter Place Bulevard Blufftn, SC 29910 RE: evicre Draft Onclgy Imaging Guidelines, v 19.0 Gentlepersns: Prstate Cancer Internatinal is a nt-fr-prfit

More information

Using the RC View DAT App

Using the RC View DAT App Using the RC View DAT App Disaster Cycle Services Pilt Dctrine RC View DAT Dispatch Pilt January 2018 Sectin: Table f Cntents Table f Cntents Table f Cntents... 2 Change Lg... 3 Obtaining and Installing

More information

EXECUTIVE SUMMARY INNOVATION IS THE KEY TO CHANGING THE PARADIGM FOR THE TREATMENT OF PAIN AND ADDICTION TO CREATE AN AMERICA FREE OF OPIOID ADDICTION

EXECUTIVE SUMMARY INNOVATION IS THE KEY TO CHANGING THE PARADIGM FOR THE TREATMENT OF PAIN AND ADDICTION TO CREATE AN AMERICA FREE OF OPIOID ADDICTION EXECUTIVE SUMMARY INNOVATION IS THE KEY TO CHANGING THE PARADIGM FOR THE TREATMENT OF PAIN AND ADDICTION TO CREATE AN AMERICA FREE OF OPIOID ADDICTION The Bitechnlgy Innvatin Organizatin (BIO) and ur member

More information

Corporate Governance Code for Funds: What Will it Mean?

Corporate Governance Code for Funds: What Will it Mean? Crprate Gvernance Cde fr Funds: What Will it Mean? The Irish Funds Industry Assciatin has circulated a draft Vluntary Crprate Gvernance Cde fr the Funds Industry in Ireland. 1. Backgrund On 13 June 2011,

More information

PROCEDURAL SAFEGUARDS NOTICE PARENTAL RIGHTS FOR PRIVATE SCHOOL SPECIAL EDUCATION STUDENTS

PROCEDURAL SAFEGUARDS NOTICE PARENTAL RIGHTS FOR PRIVATE SCHOOL SPECIAL EDUCATION STUDENTS PROCEDURAL SAFEGUARDS NOTICE PARENTAL RIGHTS FOR PRIVATE SCHOOL SPECIAL EDUCATION STUDENTS INTRODUCTION This ntice prvides an verview f the parental special educatin rights, smetimes called prcedural safeguards

More information

SUFFOLK COUNTY COUNCIL. Anti- Social Behaviour Act Penalty Notice. Code of conduct

SUFFOLK COUNTY COUNCIL. Anti- Social Behaviour Act Penalty Notice. Code of conduct SUFFOLK COUNTY COUNCIL Anti- Scial Behaviur Act 2003 Penalty Ntice Cde f cnduct SCC Penalty Ntice Cde f Cnduct & Administrative Guidance: revised August 2014 1 Cntents 1. Legal Basis 2. Purpse f the Penalty

More information

Creating and Linking Charge Objects

Creating and Linking Charge Objects Overview Charge bject screens are used t maintain cst accunting cdes that agencies use t break ut emplyee time based n wrk perfrmed and leave time while assigned t a specific prject(s). The charge bject

More information

BIOLOGY 101. CHAPTER 13: Meiosis and Sexual Life Cycles: Variations on a Theme

BIOLOGY 101. CHAPTER 13: Meiosis and Sexual Life Cycles: Variations on a Theme BIOLOGY 101 CHAPTER 13: Meisis and Sexual Life Cycles: Variatins n a Theme Meisis and Sexual Life Cycles: Variatins n a Theme CONCEPTS: 13.1 Offspring acquire genes frm their parents by inheriting chrmsmes

More information

Reliability and Validity Plan 2017

Reliability and Validity Plan 2017 Reliability and Validity Plan 2017 Frm CAEP The principles fr measures used in the CAEP accreditatin prcess include: (a) validity and reliability, (b) relevance, (c) verifiability, (d) representativeness,

More information

EDPS 475: Instructional Objectives for Midterm Exam Behaviorism

EDPS 475: Instructional Objectives for Midterm Exam Behaviorism EDPS 475: Instructinal Objectives fr Midterm Exam Behavirism 1. Given a nvel example t chse frm, identify the characteristics f classical cnditining. General mdel: Stimulus (S) elicits >Respnse (R) Based

More information

2017 PEPFAR Data and Systems Applied Learning Summit Day 2: MER Analytics/Available Visualizations, Clinical Cascade Breakout Session TB/HIV EXERCISE

2017 PEPFAR Data and Systems Applied Learning Summit Day 2: MER Analytics/Available Visualizations, Clinical Cascade Breakout Session TB/HIV EXERCISE 2017 PEPFAR Data and Systems Applied Learning Summit Day 2: MER Analytics/Available Visualizatins, Clinical Cascade Breakut Sessin TB/HIV EXERCISE Created by the ICPI TB/HIV Wrkstream Abut this Handut

More information

Field Epidemiology Training Program

Field Epidemiology Training Program Field Epidemilgy Training Prgram Cancer Curriculum: Principles f Cancer Registries Case Study: Hspital-Based Cancer Registries FACILITATOR GUIDE FETP Cancer Curriculum: Principles f Cancer Registries Case

More information

William Paterson University College of Science and Health DEPARTMENT OF PUBLIC HEALTH HealthyU Syllabus

William Paterson University College of Science and Health DEPARTMENT OF PUBLIC HEALTH HealthyU Syllabus William Patersn University Cllege f Science and Health DEPARTMENT OF PUBLIC HEALTH HealthyU Syllabus 1. Title & Number f Curse: PBHL 1100-81 HealthyU (3 Credits) 2. Department f Public Health: Department

More information

Making Medicare + Medi-Cal Work for California s Dual Eligibles

Making Medicare + Medi-Cal Work for California s Dual Eligibles Making Medicare + Medi-Cal Wrk fr Califrnia s Dual Eligibles Hw MyCareMyChice.rg Wrks Infrmatin cllected Results Radmap MyCareMyChice.rg Walkthrugh Hmepage Sample questins Results Care chice sample Other

More information

2. What is SO 2? 3. The World Health Organization states that air pollution.

2. What is SO 2? 3. The World Health Organization states that air pollution. Air Quality Statins Statin 1: Study the website, Our Wrld Data, and answer the fllwing questins. 1. Accrding t this website, what is the definitin f air pllutin? 2. What is SO 2? 3. The Wrld Health Organizatin

More information

Statement of Work for Linked Data Consulting Services

Statement of Work for Linked Data Consulting Services A. Backgrund Infrmatin Statement f Wrk fr Linked Data Cnsulting Services The Natinal Library f Medicine (NLM), in Bethesda, Maryland, is a part f the Natinal Institutes f Health, US Department f Health

More information

Podcast Transcript Title: Common Miscoding of LARC Services Impacting Revenue Speaker Name: Ann Finn Duration: 00:16:10

Podcast Transcript Title: Common Miscoding of LARC Services Impacting Revenue Speaker Name: Ann Finn Duration: 00:16:10 Pdcast Transcript Title: Cmmn Miscding f LARC Services Impacting Revenue Speaker Name: Ann Finn Duratin: 00:16:10 NCTCFP: Welcme t this pdcast spnsred by the Natinal Clinical Training Center fr Family

More information

Lower Extremity Amputation (LEA) Considerations / Issues

Lower Extremity Amputation (LEA) Considerations / Issues Lwer Extremity Amputatin (LEA) Cnsideratins / Issues Prviding Te Fillers can be an advantageus resurce fr yur patient and business but it als cmes with certain cnsideratins. Please review this list belw

More information

Annual Principal Investigator Worksheet About Local Context

Annual Principal Investigator Worksheet About Local Context Cmpleting the NCI CIRB Annual Principal Investigatr Wrksheet Abut Lcal Cntext and the Study-Specific Wrksheet Abut Lcal Cntext at the University f Iwa All investigatrs cnducting research with the Natinal

More information

Percutaneous Nephrolithotomy (PCNL)

Percutaneous Nephrolithotomy (PCNL) Percutaneus Nephrlithtmy (PCNL) What is a percutaneus nephrlithtmy? is the mst effective f the cmmnly perfrmed prcedures fr kidney stnes. It is the best prcedure fr large and cmplex stnes. T perfrm this

More information

Frequently Asked Questions: IS RT-Q-PCR Testing

Frequently Asked Questions: IS RT-Q-PCR Testing Questins 1. What is chrnic myelid leukemia (CML)? 2. Hw des smene knw if they have CML? 3. Hw is smene diagnsed with CML? Frequently Asked Questins: IS RT-Q-PCR Testing Answers CML is a cancer f the bld

More information

Name: Anchana Ganesh Age: 21 years Home Town: Chennai, Tamil Nadu Degree: B.Com. Profilometer Score. Profilometer Graph

Name: Anchana Ganesh Age: 21 years Home Town: Chennai, Tamil Nadu Degree: B.Com. Profilometer Score. Profilometer Graph Ms. Archana Ganesh Candidate Analyzed n: August 7 th, 2012 Candidate Infrmatin: Name: Anchana Ganesh Age: 21 years Hme Twn: Chennai, Tamil Nadu Degree: B.Cm Abut Prfilmeter Prfilmeter is a Psychmetric

More information

A pre-conference should include the following: an introduction, a discussion based on the review of lesson materials, and a summary of next steps.

A pre-conference should include the following: an introduction, a discussion based on the review of lesson materials, and a summary of next steps. NAU Mdel Observatin Prtcl The mdel prtcl was develped with supprt and expertise frm the Natinal Institute fr Excellence in Teaching (NIET) and is based in great part n NIET s extensive experience cnducting

More information

Organization: ANNE ARUNDEL MEDICAL CENTER Solution Title; REDUCTION OF STEMI DOOR TO BALLOON TIME: A COLLABORATIVE EFFORT!

Organization: ANNE ARUNDEL MEDICAL CENTER Solution Title; REDUCTION OF STEMI DOOR TO BALLOON TIME: A COLLABORATIVE EFFORT! Organizatin: ANNE ARUNDEL MEDICAL CENTER Slutin Title; REDUCTION OF STEMI DOOR TO BALLOON TIME: A COLLABORATIVE EFFORT! Prgram/Prject Descriptin, including Gals: In the treatment f acute ST elevatin mycardial

More information

19 th INTERNATIONAL CONGRESS ON ACOUSTICS MADRID, 2-7 SEPTEMBER 2007 NARROW TUBES ACOUSTIC IMPEDANCE CHARACTERIZATION USING FINITE ELEMENT BASED TOOLS

19 th INTERNATIONAL CONGRESS ON ACOUSTICS MADRID, 2-7 SEPTEMBER 2007 NARROW TUBES ACOUSTIC IMPEDANCE CHARACTERIZATION USING FINITE ELEMENT BASED TOOLS 19 th INTERNATIONAL CONGRESS ON ACOUSTICS MADRID, 2-7 SEPTEMBER 2007 NARROW TUBES ACOUSTIC IMPEDANCE CHARACTERIZATION USING FINITE ELEMENT BASED TOOLS PACS: 43.20.Ye Brav, Agustín 1 ; Ruiz, Marian 1 ;

More information

2017 Optum, Inc. All rights reserved BH1124_112017

2017 Optum, Inc. All rights reserved BH1124_112017 1) What are the benefits t clients f encuraging the use f MAT? Withut MAT, 90% f individuals with Opiid Use Disrder (OUD) will relapse within ne year. With MAT, the relapse rate fr thse with OUD decreases

More information

Initial Postoperative Knee Care Patella or Quadriceps Tendon Repairs: - Videos are available on Dr. Witty s website: drjeffreywitty.

Initial Postoperative Knee Care Patella or Quadriceps Tendon Repairs: - Videos are available on Dr. Witty s website: drjeffreywitty. Initial Pstperative Knee Care Patella r Quadriceps Tendn Repairs: - Vides are available n Dr. Witty s website: drjeffreywitty.cm Imprtant Phne Numbers: - Please see the cntact infrmatin abve fr imprtant

More information

CLINICAL MEDICAL POLICY

CLINICAL MEDICAL POLICY Plicy Name: Plicy Number: Respnsible Department(s): CLINICAL MEDICAL POLICY Supervised Exercise Therapy fr Peripheral Artery Disease (PAD) MP-077-MD-DE Medical Management Prvider Ntice Date: 01/15/2019

More information

Before Your Visit: Mohs Skin Cancer Surgery

Before Your Visit: Mohs Skin Cancer Surgery Befre Yur Visit: Mhs Skin Cancer Surgery Yur Kaiser Permanente Care Instructins Skin Cancer Infrmatin What is skin cancer? Skin cancers are tumrs, r malignancies, f the skin. Skin cancer is assciated with

More information

2017 CMS Web Interface

2017 CMS Web Interface CMS Web Interface PREV-12 (NQF 0418): Preventive Care and Screening: Screening fr Depressin and Fllw-Up Measure Steward: CMS Web Interface V1.0 Page 1 f 22 11/15/2016 Cntents INTRODUCTION... 3 WEB INTERFACE

More information

Execu/Suite QuickBooks Interface

Execu/Suite QuickBooks Interface This dcument describes the Execu/Tech interface t QuickBks and includes Execu/Tuch pint f sale when used with Execu/Suite Htel PMS. Execu/Tuch stand-alne is excluded frm this dcument. Htels using Excu/Suite

More information

Community Health Worker / Certified Recovery Specialist Training Application

Community Health Worker / Certified Recovery Specialist Training Application APPLICANTS REQUIRED TO COMPLETE APPLICATION WITHOUT ASSISTANCE FROM OTHERS $35 Applicatin Fee is nn-refundable Applying des NOT guarantee admissin int training Date f Applicatin: First Name: Last Name:

More information

Module 6: Goal Setting

Module 6: Goal Setting Mdule 6: Gal Setting Objectives T understand the cncept f gal setting in Brief CBT T acquire skills t set feasible and apprpriate gals in Brief CBT What is gal setting, and why is it imprtant t set gals

More information

Code Clone Analysis Environment for Software Maintenance

Code Clone Analysis Environment for Software Maintenance Cde Clne Analysis Envirnment fr Sftware Maintenance Yshiki Hig 1 Tshihir Kamiya 2 Shinji Kusumt 1 Katsur Inue 1 1 Graduate Schl f Infrmatin Science and Technrgy, Osaka University 2 PRESTO, Japan Science

More information

DATA RELEASE: UPDATED PRELIMINARY ANALYSIS ON 2016 HEALTH & LIFESTYLE SURVEY ELECTRONIC CIGARETTE QUESTIONS

DATA RELEASE: UPDATED PRELIMINARY ANALYSIS ON 2016 HEALTH & LIFESTYLE SURVEY ELECTRONIC CIGARETTE QUESTIONS DATA RELEASE: UPDATED PRELIMINARY ANALYSIS ON 216 HEALTH & LIFESTYLE SURVEY ELECTRONIC CIGARETTE QUESTIONS This briefing has been specifically prepared fr the Ministry f Health t prvide infrmatin frm this

More information

2017 CMS Web Interface

2017 CMS Web Interface CMS Web Interface CARE-2 (NQF 0101): Falls: Screening fr Future Fall Risk Measure Steward: NCQA Web Interface V1.0 Page 1 f 18 11/15/2016 Cntents INTRODUCTION... 3 WEB INTERFACE SAMPLING INFORMATION...

More information

Food Stamp Program Pandemic Flu Planning

Food Stamp Program Pandemic Flu Planning 06/27/07 SUBJECT: TO: Fd Stamp Prgram Pandemic Flu Planning All Reginal Administratrs Fd and Nutritin Service The Fd and Nutritin Service (FNS) recently devised guidelines fr the peratin f key nutritin

More information

Human papillomavirus (HPV) refers to a group of more than 150 related viruses.

Human papillomavirus (HPV) refers to a group of more than 150 related viruses. HUMAN PAPILLOMAVIRUS This infrmatin may help answer sme f yur questins and help yu think f ther questins that yu may want t ask yur cancer care team; it is nt intended t replace advice r discussin between

More information