Course Overview CSCE 312. Instructor: Daniel A. Jiménez. Bryant and O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition

Similar documents
Great Reality #2: You ve Got to Know Assembly Does not generate random values Arithmetic operations have important mathematical properties

Course Overview. Jo, Heeseung

ABSTRACTION ISN T THE ENTIRE STORY

Digital Systems. Jinkyu Jeong Computer Systems Laboratory Sungkyunkwan University

Lecture 1: Course Overview

Computer Organization - Overview

Introduction to Computer Systems: Semester 1 Computer Architecture

Course Overview. CSCI 224 / ECE 317: Computer Architecture. Instructors: Prof. Jason Fritts. Slides adapted from Bryant & O Hallaron s slides

Introduction to Computer Systems

Introduction to Computer Systems

Introduction to Computer Systems /18 243, Spring st Lecture, Aug. 25 th. The course that gives CMU its Zip!

Overview. Course Overview and Introduction

CS241 Computer Organization Spring

Introduction to Computer Architecture. Meet your Colleagues. Course Theme CISC Michela Taufer September 4, 2008

Introduction to Computer Systems

Overview of the ECE Computer Software Curriculum. David O Hallaron Associate Professor of ECE and CS Carnegie Mellon University

Systems Programming and Computer Architecture ( )

The Hardware/Software Interface CSE351 Spring 2013 (spring has sprung!)

Introduction Presentation A

Introduction to Computer Systems

Introduction to Computer Systems

Systems Programming and Computer Architecture ( )

: Computer Architecture

The Hardware/Software Interface CSE351 Spring 2015

Chris Riesbeck, Fall Introduction to Computer Systems

Carnegie Mellon. Bryant and O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition

Memory hierarchies: caches and their impact on the running time

Introduction to System Programming Course 2015 Spring Euiseong Seo

Course Overview Computer Science 104: Machine Organiza;on and Programming. Overview 1/12/11

Carnegie Mellon. Bryant and O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition

Introduction to Computer Systems

Introduction to Computer Systems

COMP 321: Introduction to Computer Systems

Machine-Level Programming V: Unions and Memory layout

Introduction to Computer Systems

Computer Systems Organization

Most of the slides in this lecture are either from or adapted from slides provided by the authors of the textbook Computer Systems: A Programmer s

CS 3330 Introduction. Daniel and Charles. CS 3330 Computer Architecture 1

CIS* Programming

CS:APP3e Web Aside OPT:SIMD: Achieving Greater Parallelism with SIMD Instructions

Introducing Computer Systems from a Programmer s Perspective

Machine-Level Programming V: Advanced Topics

Agenda. Peer Instruction Question 1. Peer Instruction Answer 1. Peer Instruction Question 2 6/22/2011

CSC 252: Computer Organization Spring 2018: Lecture 9

HW1 due Monday by 9:30am Assignment online, submission details to come

Course Overview. The course that gives CMU its Zip! /18-213/15-513: Introduc on to Computer Systems 1 st Lecture, Aug 30, 2016

CS:APP3e Web Aside OPT:SIMD: Achieving Greater Parallelism with SIMD Instructions

Syllabus of ENPM 691: Secure Programming in C

Foundations of Computer Systems

Operating Systems (ECS 150) Spring 2011

CS241 Computer Organization Spring Principle of Locality

LC-3 Assembly Language

CS61C : Machine Structures

EE108B: Digital Systems II EE108B. Digital Systems II. Major Topics. What EE108b is About

Dynamic Memory Allocation I

CS 61C: Great Ideas in Computer Architecture C Pointers. Instructors: Vladimir Stojanovic & Nicholas Weaver

QUIZ How do we implement run-time constants and. compile-time constants inside classes?

Computer Systems A Programmer s Perspective 1 (Beta Draft)

Course overview. Computer Organization and Assembly Languages Yung-Yu Chuang 2006/09/18. with slides by Kip Irvine

Introduction to System Programming

High Performance Computing Lecture 1. Matthew Jacob Indian Institute of Science

Who are we? Andre Platzer Out of town the first week GHC TAs Alex Crichton, senior in CS and ECE Ian Gillis, senior in CS

EE 209: Programming Structures for Electrical Engineering

We made it! Java: Assembly language: OS: Machine code: Computer system:

Intro to C: Pointers and Arrays

CS Programming In C

Number Review. Lecture #3 More C intro, C Strings, Arrays, & Malloc Variables. Clarification about counting down

Programming Languages CSCE

CS2303 C14 Systems Programming Concepts. Bob Kinicki

Page 1. Stuff. Last Time. Today. Safety-Critical Systems MISRA-C. Terminology. Interrupts Inline assembly Intrinsics

Memory, Data, & Addressing I

Data III & Integers I

CS162 - POINTERS. Lecture: Pointers and Dynamic Memory

CIS 110 Introduction to Computer Programming Fall 2017 Midterm. Recitation ROOM :

Locking: A necessary evil? Lecture 10: Avoiding Locks. Priority Inversion. Deadlock

CSE 240 Introduction to Computer Architecture

Announcements. 1. Forms to return today after class:

BLM2031 Structured Programming. Zeyneb KURT

Fall, $ cat welcome.c #include <stdio.h>

Arrays in C C Programming and Software Tools. N.C. State Department of Computer Science

Laboratory 2: Programming Basics and Variables. Lecture notes: 1. A quick review of hello_comment.c 2. Some useful information

Programming Language Concepts, cs2104 Lecture 01 ( )

: How to Write Fast Numerical Code ETH Computer Science, Spring 2016 Midterm Exam Wednesday, April 20, 2016

Code Optimization & Performance. CS528 Serial Code Optimization. Great Reality There s more to performance than asymptotic complexity

Central Washington University Department of Computer Science Course Syllabus

SWE3004: Operating Systems. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Arrays and Structs. CSE 351 Summer Instructor: Justin Hsia. Teaching Assistants: Josie Lee Natalie Andreeva Teagan Horkan.

EXAM IMPLEMENTING AN ADVANCED SERVER INFRASTRUCTURE LAB MANUAL BY MICROSOFT OFFICIAL ACADEMIC COURSE

Lecture 10: Avoiding Locks

Review! Lecture 5 C Memory Management !

CS61C : Machine Structures

CS 150 Introduction to Computer Science 1

Memory Allocation III

CS:APP Web Aside DATA:TNEG: Bit-Level Representation of Two s Complement Negation

Lecture 4: Outline. Arrays. I. Pointers II. III. Pointer arithmetic IV. Strings

CS 61C: Great Ideas in Computer Architecture. C Arrays, Strings, More Pointers

CS 107 Lecture 0: Welcome

ANITA S SUPER AWESOME RECITATION SLIDES

CS/ENGRD 2110 Object-Oriented Programming and Data Structures Spring 2012 Thorsten Joachims

CS / ECE 6810 Midterm Exam - Oct 21st 2008

Transcription:

Course Overview CSCE 312 Instructor: Daniel A. Jiménez 1

Overview Course theme Five realities How the course fits into the CS/ECE curriculum Academic integrity 2

Course Theme: Abstraction Is Good But Don t Forget Reality Most CS and CE courses emphasize abstraction Abstract data types Asymptotic analysis These abstractions have limits Especially in the presence of bugs Need to understand details of underlying implementations Useful outcomes from taking 312 Become more effective programmers Able to find and eliminate bugs efficiently Able to understand and tune for program performance Prepare for later systems classes in CS & ECE Compilers, Operating Systems, Networks, Computer Architecture, Embedded Systems, Storage Systems, etc. 3

Great Reality #1: Ints are not Integers, Floats are not Reals Example 1: Is x 2 0? Float s: Yes! Int s: 40000 * 40000 1600000000 50000 * 50000?? Example 2: Is (x + y) + z = x + (y + z)? Unsigned & Signed Int s: Yes! Float s: (1e20 + -1e20) + 3.14 --> 3.14 1e20 + (-1e20 + 3.14) -->?? Source: xkcd.com/571 4

Computer Arithmetic Does not generate random values Arithmetic operations have important mathematical properties Cannot assume all usual mathematical properties Due to finiteness of representations Integer operations satisfy ring properties Commutativity, associativity, distributivity Floating point operations satisfy ordering properties Monotonicity, values of signs Observation Need to understand which abstractions apply in which contexts Important issues for compiler writers and serious application programmers 5

Great Reality #2: You ve Got to Know Assembly Chances are, you ll never write programs in assembly Compilers are much better & more patient than you are But: Understanding assembly is key to machine-level execution model Behavior of programs in presence of bugs High-level language models break down Tuning program performance Understand optimizations done / not done by the compiler Understanding sources of program inefficiency Implementing system software Compiler has machine code as target Operating systems must manage process state Creating / fighting malware x86 assembly is the language of choice! 6

Great Reality #3: Memory Matters Random Access Memory Is an Unphysical Abstraction Memory is not unbounded It must be allocated and managed Many applications are memory dominated Memory referencing bugs especially pernicious Effects are distant in both time and space Memory performance is not uniform Cache and virtual memory effects can greatly affect program performance Adapting program to characteristics of memory system can lead to major speed improvements 7

Memory Referencing Bug Example typedef struct { int a[2]; double d; } struct_t; double fun(int i) { volatile struct_t s; s.d = 3.14; s.a[i] = 1073741824; /* Possibly out of bounds */ return s.d; } fun(0) 3.14 fun(1) 3.14 fun(2) 3.1399998664856 fun(3) 2.00000061035156 fun(4) 3.14 fun(6) Segmentation fault Result is system specific 8

Memory Referencing Bug Example typedef struct { int a[2]; double d; } struct_t; fun(0) 3.14 fun(1) 3.14 fun(2) 3.1399998664856 fun(3) 2.00000061035156 fun(4) 3.14 fun(6) Segmentation fault Explanation: struct_t Critical State 6? 5? 4 d7... d4 3 d3... d0 2 a[1] 1 a[0] 0 Location accessed by fun(i) 9

Memory Referencing Errors C and C++ do not provide any memory protection Out of bounds array references Invalid pointer values Abuses of malloc/free Can lead to nasty bugs Whether or not bug has any effect depends on system and compiler Action at a distance Corrupted object logically unrelated to one being accessed Effect of bug may be first observed long after it is generated How can I deal with this? Program in Java, Ruby, Python, ML, Understand what possible interactions may occur Use or develop tools to detect referencing errors (e.g. Valgrind) 10

Great Reality #4: There s more to performance than asymptotic complexity Constant factors matter too! And even exact op count does not predict performance Easily see 10:1 performance range depending on how code written Must optimize at multiple levels: algorithm, data representations, procedures, and loops Must understand system to optimize performance How programs compiled and executed How to measure program performance and identify bottlenecks How to improve performance without destroying code modularity and generality 11

Memory System Performance Example void copyij(int src[2048][2048], int dst[2048][2048]) { int i,j; for (i = 0; i < 2048; i++) for (j = 0; j < 2048; j++) dst[i][j] = src[i][j]; } void copyji(int src[2048][2048], int dst[2048][2048]) { int i,j; for (j = 0; j < 2048; j++) for (i = 0; i < 2048; i++) dst[i][j] = src[i][j]; } 4.3ms 2.0 GHz Intel Core i7 Haswell 81.8ms Hierarchical memory organization Performance depends on access patterns Including how step through multi-dimensional array 12

Why The Performance Differs copyij 16000 Read throughput (MB/s) 14000 12000 10000 8000 6000 4000 2000 copyji 0 s1 s3 s5 Stride (x8 bytes) s7 s9 s11 128m 32m 8m 2m 512k 128k Size (bytes) 32k 13

Great Reality #5: Computers do more than execute programs They need to get data in and out I/O system critical to program reliability and performance They communicate with each other over networks Many system-level issues arise in presence of network Concurrent operations by autonomous processes Coping with unreliable media Cross platform compatibility Complex performance issues 14

Course Perspective Most Systems Courses are Builder-Centric Computer Architecture Design pipelined processor in Verilog Operating Systems Implement sample portions of operating system Compilers Write compiler for simple language Networking Implement and simulate network protocols 15

Course Perspective (Cont.) Our Course is Programmer-Centric Purpose is to show that by knowing more about the underlying system, one can be more effective as a programmer Enable you to Write programs that are more reliable and efficient Incorporate features that require hooks into OS E.g., concurrency, signal handlers Cover material in this course that you won t see elsewhere Not just a course for dedicated hackers We bring out the hidden hacker in everyone! 16

Textbook Randal E. Bryant and David R. O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition (CS:APP3e), Pearson, 2016 http://csapp.cs.cmu.edu This book really matters for the course! How to solve labs Practice problems typical of exam problems 17

Course Components Lectures Higher level concepts Recitations Applied concepts, important tools and skills for labs, clarification of lectures, exam coverage Homeworks (Labs) The heart of the course 1-2 weeks each Provide in-depth understanding of an aspect of systems Programming and measurement Exams (midterm + final) Test your understanding of concepts & mathematical principles 18

Getting Help Class Web page: http://faculty.cse.tamu.edu/djimenez/312 Complete schedule of lectures, exams, and assignments Copies of lectures, assignments, exams, solutions Clarifications to assignments Teaching Assistants Peer Teachers Office Hours Ask Questions in Class! 19

Rules of the Lecture Hall Laptops: permitted Electronic communications: forbidden No email, instant messaging, cell phone calls, etc Presence in lectures, recitations: voluntary, recommended 20

Welcome and Enjoy! 21