Some problems and more…

Slides:



Advertisements
Similar presentations
January 6. January 7 January 8 January 9 January 10.
Advertisements

1 Session-13 CSIT 121 Spring 2006 Test-1 is on March 9 th ; Demo-5 due date extended to March 7 Test-1 is on March 9 th ; Demo-5 due date extended to.
26-Oct-15COMP28112 Lecture 171 COMP28112 – Lecture 17 Grid and Cloud Computing Where are we? We covered all key material. After the break, we’ll talk about.
SunSatFriThursWedTuesMon January
Engineering 1020 Introduction to Programming Peter King Winter 2010.
Grid and Cloud Computing
COMP28112 – Lecture 16 The Quest for Performance (lab exercise 3)
Monthly Report For January 2017
Primary Longman Elect 3A Chapter 5 Asking about dates.
LINE graphs SPI & SPI SPI & SPI
Payroll Calendar Fiscal Year
Baltimore.
Abbreviations.
Time Revision.
JANUARY FEBRUARY MARCH APRIL MAY JUNE JULY AUGUST SEPTEMBER
JANUARY FEBRUARY MARCH APRIL MAY JUNE JULY AUGUST SEPTEMBER

CS 456/656 – Computer Networks

COMP28112 – Lecture 18 The quest for performance (lab exercise 3)
GANTT CHARTS Example Text Text Here Text Here Text Here Text Here
Lecturer: Sri Parameswaran
1   1.テキストの入れ替え テキストを自由に入れ替えることができます。 フチなし全面印刷がおすすめです。 印刷のポイント.
JANUARY FEBRUARY MARCH APRIL MAY JUNE JULY AUGUST SEPTEMBER
January MON TUE WED THU FRI SAT SUN
January MON TUE WED THU FRI SAT SUN
2017 Jan Sun Mon Tue Wed Thu Fri Sat
COMP28112 – Lecture 16 The quest for performance (lab exercise 3)
ANNUAL CALENDAR HOLIDAYS JANUARY FEBRUARY MARCH APRIL MAY JUNE
HOLIDAYS ANNUAL CALENDAR JANUARY FEBRUARY MARCH APRIL MAY JUNE
Revision exercise #2 Goal: submit an improved version of your lab 6 (MIMT) report Take your report to the University Writing Center for feedback in paper.


FY 2019 Close Schedule Bi-Weekly Payroll governs close schedule
January Sun Mon Tue Wed Thu Fri Sat
January MON TUE WED THU FRI SAT SUN
January MON TUE WED THU FRI SAT SUN
COMP24111 Course Unit Overview

Jan Sun Mon Tue Wed Thu Fri Sat
HOLIDAYS ANNUAL CALENDAR JANUARY FEBRUARY MARCH APRIL MAY JUNE
S M T W F S M T W F
COMP28112 Distributed Computing
COMP28112 Distributed Computing
January MON TUE WED THU FRI SAT SUN
GANTT CHART can be used for scheduling generic resources as well as project management. They can also be used for scheduling production processes and.

1 - January - Sun Mon The Wed Thu Fri Sat
2 0 X X s c h e d u l e 1 MON TUE WED THU JANUARY 20XX FRI SAT SUN MEMO.
CS 240 – Lecture 7 Boolean Operations, Increment and Decrement Operators, Constant Types, enum Types, Precedence.
January MON TUE WED THU FRI SAT SUN
JANUARY 1 Sun Mon Tue Wed Thu Fri Sat
Calendar
January MON TUE WED THU FRI SAT SUN
JANUARY 1 Sun Mon Tue Wed Thu Fri Sat
January MON TUE WED THU FRI SAT SUN
S M T W F S M T W F
JANUARY 1 Sun Mon Tue Wed Thu Fri Sat

Grid and Cloud Computing
TIMELINE NAME OF PROJECT Today 2016 Jan Feb Mar Apr May Jun
1 January 2018 Sun Mon Tue Wed Thu Fri Sat

Reviewing Abbreviations
COMP28112 – Lecture 15 The quest for performance (lab exercise 3)
1 January MON TUE WED THU FRI SAT SUN MEMO 2 February MON TUE WED THU FRI SAT SUN.
S M T W F S M T W F
S M T W F S M T W F
1 January MON TUE WED THU FRI SAT SUN MEMO 2 February MON TUE WED THU FRI SAT SUN.
UNITS OF TIME QUESTIONS.
Presentation transcript:

Some problems and more… COMP28112 – Lecture 20 Some problems and more… 24-Nov-18 COMP28112 Lecture 20

The importance/usefulness of keeping logs of activity 24-Nov-18 COMP28112 Lecture 20

Messages to the server based on hour of the day (0-1, 1-2, …, 23-24) 2014 2013 2015 (120853 messages) 2016 (88718 messages)

(111710) Messages to the server based on hour of the day (0-1, 1-2, …, 23-24) 2017 (111710 messages) 24-Nov-18 COMP28112 Lecture 20

(106109) Messages to the server based on hour of the day (0-1, 1-2, …, 23-24) 2018 (106109 messages) 24-Nov-18 COMP28112 Lecture 20

What day of the week was busiest? (1: Mon, 7: Sun) 2013 2014 2015 2016 24-Nov-18 COMP28112 Lecture 20

What day of the week was busiest? (1: Mon, 7: Sun) 2017 24-Nov-18 COMP28112 Lecture 20

What day of the week was busiest? (1: Mon, 7: Sun) 2018 24-Nov-18 COMP28112 Lecture 20

Messages since 9 February (=day 1) 23rd April 2013 2014 4th March 2016 2015

Messages since 9/2/2017 (=day 1) 1 March 28 March 24-Nov-18 COMP28112 Lecture 20

Messages since 9/2/2018 (=day 1) 16 April 20 February 27 Feb. 20 Mar.

Some problems… Marking sessions for the labs: May 8, 9, 11 When is it best to execute two tasks on one machine as opposed to one task on one machine + communication (data transfer) and computation on another? How to design random values, which are not uniform? E.g., two-digit integer where the probability is: 0-9 (90%) and 10-99 (10%) How to compute the average of streamed data? (related to lab exercise 3, where you have to compute the average over large values) Split the following loop, so that each of 4 threads takes the same amount of computation. Rewrite, in terms of t, where t is between 0 and 3. for(i=0;i<1000;i++) { some_computation_on_i; } Marking sessions for the labs: May 8, 9, 11 All your lab work should be marked by May 11!