亚洲精品人人_日韩视频在线一区二区三区_欧美剧在线免费观看网站_亚洲国产91

代寫GA.2250、Python/Java程序語言代做

時間:2024-08-14  來源:  作者: 我要糾錯



Programming Assignment #4 (Lab 4): IO Scheduling Professor Hubertus Franke 
Class CSCI-GA.2250-001 Summer 2024 
 
In this lab you will implement and simulate the scheduling and optimization of I/O operations for a hard disk. Applications 
submit their block IO requests (bio) to the IO subsystem [ Block Layer ] (potentially via the filesystem), where they are 
maintained in an IO-queue until the disk device is ready for servicing another request. The IO-scheduler then selects a request 
from the IO-queue and submits it to the disk device. This selection is commonly known as the strategy() routine in 
operating systems and shown in the figure below. On completion, another request can be taken from the IO-queue and 
submitted to the disk. The scheduling policies will allow for some optimization as to reduce disk head movement or overall 
wait time in the system. 
 
The schedulers that need to be implemented are FIFO (N), SSTF (S), LOOK (L), CLOOK (C), and FLOOK (F) 
(the letters in bracket define which parameter must be given in the –s program flag shown below). 
 
You are to implement these different IO-schedulers in C or C++ and submit the source code and Makefile as a *.zip, *.tar or 
*.tar.Z, which we will compile and run. Please test on linserv*.cims.nyu.edu before submission. 
 
 
Invocation is as follows: 
 ./iosched [ –s<schedalgo> | -v | -q | -f ] <inputfile> 
 
Only the “-s” option is required. The default scheduler is fifo is “-s” is not supplied. Options as usual can be in any order. 
The input file is structured as follows: Lines starting with ‘#’ are comment lines and should be ignored. 
Any other line describes an IO operation where the 1
st
 integer is the time step at which the IO operation is issued and the 2
nd
 
integer is the track that is accesses. Since IO operation latencies are largely dictated by seek delay (i.e. moving the head to the 
correct track), we ignore rotational and transfer delays for simplicity. The inputs are well formed. 
 
#io generator 
#numio=32 maxtracks=512 lambda=10.000000 
1 339 
131 401 
 
We assume that moving the head by one track will cost one time unit. As a result, your simulation can/should be done using 
integers. The disk can only consume/process one IO request at a time. Once a request is active on the disk it cannot be 
interrupted by any other incoming request. Hence these requests must be maintained in an IO queue and managed according 
to the scheduling policy. The initial direction of the LOOK algorithms is from 0-tracks to higher tracks. The head is initially 
positioned at track=0 at time=0. Note that you do not have to know the maxtrack (think SCAN vs. LOOK). Programming Assignment #4 (Lab 4): IO Scheduling Professor Hubertus Franke 
Class CSCI-GA.2250-001 Summer 2024 
 
Each simulation should print information on individual IO requests followed by a SUM line that has computed some statistics 
of the overall run. (see reference outputs). 
 
For each IO request create an info line (5 requests shown) in the order of appearance in the input file. 
 0: 1 1 431 
 1: 87 467 533 
 2: 280 431 467 
 3: 321 533 762 
 4: 505 762 791 
 
Created by 
 printf("%5d: %5d %5d %5dn", iop, req->arr_time, r->start_time, r->end_time); 
 
args: IO-op#, its arrival to the system (same as from inputfile), its disk service start time, its disk service end time 
 
Please remember “ %5d” is not “%6d” !!! For C++ formatting refer back to lab2 and lab3 where similar outputs were created. 
 
and for the statistics of the simulation provide a SUM line ( note variables printed as “%lf” are double floats ). 
 
Created by: printf("SUM: %d %d %.4lf %.2lf %.2lf %dn", 
 total_time, tot_movement, io_utilization, 
 avg_turnaround, avg_waittime, max_waittime); 
total_time: total simulated time, i.e. until the last I/O request has completed. 
tot_movement: total number of tracks the head had to be moved 
io_utilization: ratio of time_io_was_busy / total_time 
avg_turnaround: average turnaround time per operation from time of submission to time of completion 
avg_waittime: average wait time per operation (time from submission to issue of IO request to start disk operation) 
max_waittime: maximum wait time for any IO operation. 
 
10 sample inputs and outputs and runit/gradeit scripts are provided with the assignment on NYU brightspace. 
Please look at the sum results and identify what different characteristics the schedulers exhibit. 
 
You can make the following assumptions (enforced and caught by the reference program). 
- at most 10000 IO operations will be tested, so its OK (recommended) to first read all requests from file before processing. 
- all io-requests are provided in increasing time order (no sort needed) 
- you never have two IO requests arrive at the same time (so input is monotonically increasing) 
 
I strongly suggest, you do not use discrete event simulation this time. You can write a simple loop that increments simulation 
time by one and checks whether any action is to be taken. In that case you have to check in the following order. 
The code structure should look something like this (there are some edge conditions you have to consider, such as the next I/O 
is for the track the head currently is at, etc. ): 
 
 while (true) 
if a new I/O arrived at the system at this current time 
 → add request to IO-queue 
if an IO is active and completed at this time 
 → Compute relevant info and store in the IO request for final summary 
if no IO request active now 
 if requests are pending 
 → Fetch the next request from IO-queue and start the new IO. 
 else if all IO from input file processed 
 → exit simulation 
if an IO is active 
 → Move the head by one unit in the direction its going (to simulate seek) 
Increment time by 1 
 
When switching queues in FLOOK you always continue in the direction you were going from the current position, until the 
queue is empty. Then you switch direction until empty and then switch the queues continuing into that direction and so forth. 
While other variants are possible, I simply chose this one this time though other variants make also perfect sense. Programming Assignment #4 (Lab 4): IO Scheduling Professor Hubertus Franke 
Class CSCI-GA.2250-001 Summer 2024 
 
Additional Information: 
 
As usual, I provide some more detailed tracing information to help you overcome problems. Note your code only needs to 
provide the result line per IO request and the ‘SUM line’. 
 
The reference program under ~frankeh/Public/lab4/iosched on the cims machine implements three additional options: –v, -q, 
-f to debug deeper into IO tracing and IO queues. 
 
The –v execution trace contains 3 different operations (add a request to the IO-queue, issue an operation to the disk and 
finish a disk operation). Following is an example of tracking IO-op 18 through the times 1151..1307 from submission to 
completion. 
 
1151: 18 add 221 // 18 is the IO-op # (starting with 0) and 221 is the track# requested 
1239: 18 issue 221 289 // 18 is the IO-op #, 221 is the track# requested, 289 is the current track# 
1307: 18 finish 68 // 18 is the IO-op #, 68 is total length/time of the io from request to completion 
 
-q shows the details of the IO queue and direction of movement ( 1==up , -1==down) and 
–f shows additional queue information during the FLOOK. 
 
Here Queue entries are tuples during add [ ior# : #io-track ] or triplets during get [ ior# : io-track# : distance ], 
where distance is negative if it goes into the opposite direction (where applicable ). 
 
Please use these debug flags and the reference program to get more insights on debugging the ins and outs (no punt intended) 
of this assignment and answering certain “why” questions. 
 
Generating your own input for further testing: 
 
A generator program is available under ~frankeh/Public/lab4/iomake and can be used to create additional inputs if you like to 
expand your testing. You will have to run this against the reference program ~frankeh/Public/lab4/iosched yourself. 
 
Usage: iomake [-v] [-t maxtracks] [-i num_ios] [-L lambda] [-f interarrival_factor] 
 
maxtracks is the tracks the disks will have, default is 512 
num_ios is the number of ios to generate, default is 32 
lambda is parameter to create a poisson distribution, default is 1.0 ( consider ranges from 0.01 .. 10.0 ) 
interarrival_factor is time factor how rapidly IOs will arrive, default is 1.0 ( consider values 0.5 .. 1.5 ), too small and the 
system will be overloaded and too large it will be underloaded and scheduling is mute as often only one i/o is outstanding. 
 
Below are the parameters for the 10 inputs files provided in the assignment so you don’t pick the same. 
 
1. iomake -v -t 128 -i 10 -L0.11 -f 0.4 
2. iomake -v -t 512 -i 20 -L0.51 
3. iomake -v -t 128 -i 50 -L0.51 
4. iomake -v -t 512 -i 100 -L0.01 
5. iomake -v -t 256 -i 50 -L1.1 
6. iomake -v -t 256 -i 20 -L0.3 
7. iomake -v -t 512 -i 100 -L0.9 
8. iomake -v -t 300 -i 80 -L3.4 -f 0.6 
9. iomake -v -t 1000 -i 80 -L3.4 -f 0.6 
10. iomake -v -t 512 -i 500 -L2.4 -f 0.6 

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp





 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:代寫MTH5510、代做Matlab程序語言
  • 下一篇:CSCI 2600代做、代寫Java設計程序
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    亚洲精品人人_日韩视频在线一区二区三区_欧美剧在线免费观看网站_亚洲国产91
    欧美日韩综合在线免费观看| 亚洲综合一区二区三区| 精品电影一区二区| 久久狠狠亚洲综合| 久久久国产综合精品女国产盗摄| 成人免费毛片aaaaa**| 欧美另类videos死尸| 久久精品亚洲精品国产欧美kt∨| 中文字幕在线视频一区| 国产精品一区二区你懂的| 国产盗摄视频一区二区三区| 在线综合视频播放| 2023国产精品视频| 丰满亚洲少妇av| 国产精品嫩草影院com| 丁香激情综合国产| 国产剧情一区在线| 在线欧美日韩精品| 欧美男同性恋视频网站| 亚洲午夜电影网| 在线91免费看| 韩国成人在线视频| 亚洲国产高清在线观看视频| 91视频观看视频| 亚洲乱码中文字幕综合| 国精产品一区一区三区mba视频 | 精品毛片乱码1区2区3区| 国产视频911| 亚洲激情av在线| 亚洲人成人一区二区在线观看| 奇米综合一区二区三区精品视频| 91精品国产综合久久精品麻豆| 激情另类小说区图片区视频区| 精品国产人成亚洲区| 久久综合色综合88| 2欧美一区二区三区在线观看视频| 色诱亚洲精品久久久久久| 青青草精品视频| 一区二区三区四区中文字幕| 国产精品国产三级国产aⅴ入口| 综合电影一区二区三区| 天使萌一区二区三区免费观看| 婷婷综合五月天| 国产一区二区三区黄视频| 99精品国产视频| 欧美一区二区三区色| 欧美激情综合在线| 夜夜精品视频一区二区| 美女脱光内衣内裤视频久久影院| 国产一区二区三区电影在线观看| 亚洲综合久久av| 欧美国产日韩亚洲一区| 欧美一区二视频| 在线观看91精品国产入口| 五月婷婷激情综合| 国产午夜精品理论片a级大结局| 北条麻妃一区二区三区| 亚洲一级在线观看| 亚洲二区在线观看| 国模冰冰炮一区二区| 日本道色综合久久| 亚洲免费av高清| 免费观看日韩电影| 亚洲男人天堂av| 亚洲精品一线二线三线| 欧美性一二三区| 99久久夜色精品国产网站| 经典三级在线一区| 91精品国产91热久久久做人人| 日韩亚洲欧美中文三级| 99久久久免费精品国产一区二区| 久久精品国产久精国产爱| 亚洲成a人v欧美综合天堂下载| 亚洲欧美一区二区视频| 久久精品一区二区三区不卡牛牛| 欧美日韩午夜在线视频| 欧美伊人久久久久久午夜久久久久| 国产+成+人+亚洲欧洲自线| 国产呦萝稀缺另类资源| 久久超碰97人人做人人爱| 日韩av电影免费观看高清完整版 | 久久综合久久99| 日本午夜一区二区| 国精品**一区二区三区在线蜜桃| 久久久久99精品国产片| 精品国产区一区| 日韩一本二本av| 这里只有精品电影| 精品视频全国免费看| 日本精品视频一区二区| 色菇凉天天综合网| 色老汉av一区二区三区| 色婷婷精品大视频在线蜜桃视频| 国产成人精品一区二区三区四区| 国产精品性做久久久久久| 国产99一区视频免费| 一本色道久久综合精品竹菊| 91国产丝袜在线播放| 欧美色综合天天久久综合精品| 欧美猛男男办公室激情| 日韩欧美国产综合| 国产女人18毛片水真多成人如厕| 国产精品丝袜一区| 亚洲视频在线一区二区| 亚洲成人在线免费| 加勒比av一区二区| 成人黄动漫网站免费app| 一本色道a无线码一区v| 日韩亚洲欧美高清| 国产精品久久久久久久裸模| 亚洲精品视频一区二区| 日韩电影免费在线观看网站| av电影在线观看一区| 欧美精品在线一区二区三区| 国产丝袜美腿一区二区三区| 亚洲高清久久久| 国产99精品国产| 91精品国产一区二区三区香蕉| 欧洲精品视频在线观看| 久久噜噜亚洲综合| 婷婷开心久久网| 色久综合一二码| 日本一区二区成人在线| 日本欧美在线看| 色噜噜狠狠成人网p站| 国产亚洲欧美激情| 丝瓜av网站精品一区二区| 成人免费三级在线| 精品国产电影一区二区| 一区二区在线电影| 风间由美性色一区二区三区| 日韩女优电影在线观看| 亚洲激情一二三区| 波多野结衣中文字幕一区二区三区| 欧美老肥妇做.爰bbww视频| 亚洲女与黑人做爰| 国产一区二区三区观看| 欧美精品精品一区| 一区二区三区四区激情| 成人久久18免费网站麻豆| 日韩三级精品电影久久久| 亚洲午夜免费电影| 91麻豆6部合集magnet| 国产亚洲一区二区三区四区 | 久久网站热最新地址| 视频精品一区二区| 91黄色免费网站| 欧美三级在线看| 欧美在线观看一二区| 国产精品三级av在线播放| 六月丁香婷婷色狠狠久久| 欧美午夜视频网站| 亚洲国产色一区| 国产精品亚洲一区二区三区妖精 | 国产精品99久久久| 99久免费精品视频在线观看| 蜜臀av性久久久久蜜臀aⅴ流畅| 一区二区三区四区激情| 国产精品久久久久aaaa樱花 | 中文字幕 久热精品 视频在线| 欧美一区二区国产| 精品盗摄一区二区三区| 精品乱码亚洲一区二区不卡| 2023国产一二三区日本精品2022| 国产欧美一区二区三区鸳鸯浴| 欧美精品一区二区久久婷婷| 国产人成一区二区三区影院| 中文字幕 久热精品 视频在线 | 欧美性受极品xxxx喷水| 色综合久久久久网| 91.xcao| 中文字幕电影一区| 一区二区高清在线| 国产成人自拍高清视频在线免费播放| 欧美日韩一区三区| 欧美成人精品3d动漫h| 亚洲日本中文字幕区| 高清成人免费视频| 777xxx欧美| 奇米在线7777在线精品| 国产一区二区三区美女| 91免费看`日韩一区二区| 欧美精品99久久久**| 波多野结衣在线aⅴ中文字幕不卡| 午夜精品成人在线视频| 欧美国产成人精品| 蜜臀99久久精品久久久久久软件| 成人国产精品视频| 欧美一区二区福利视频| 丝袜诱惑亚洲看片| 99精品视频一区二区| 国产精品久久久久9999吃药| 国产亚洲精品资源在线26u| 久久久五月婷婷| 91色.com| 日韩国产高清在线| 最新热久久免费视频| 亚洲图片欧美色图| 国产视频一区二区在线| 欧美性猛交xxxxxx富婆|