99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務合肥法律

代寫CS 2410 Computer Architecture

時間:2024-03-24  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



CS 2410 Computer Architecture
Spring 2024
Course Project
Distributed: Feb 19th, 2024
Due: 11:59pm April 22
nd, 2024
Introduction:
This is a single-person project.
You are allowed and encouraged to discuss the project with your classmates, but no sharing of
the project source code and report. Please list your discussion peers, if any, in your report
submission.
One benefit of a dynamically scheduled processor is its ability to tolerate changes in latency or
issue capability in out of order speculative processors.
The purpose of this project is to evaluate this effect of different architecture parameters on a CPU
design by simulating a modified (and simplified) version of the PowerPc 604 and 620 architectures.
We will assume a **-bit architecture that executes a subset of the RISC V ISA which consists of
the following 10 instructions: fld, fsd, add, addi, slt, fadd, fsub, fmul, fdiv, bne. See Appendix A
in the textbook for instructions’ syntax and semantics.
Your simulator should take an input file as a command line input. This input file, for example,
prog.dat, will contain a RISC V assembly language program (code segment). Each line in the input
file is a RISC V instruction from the aforementioned 10 instructions. Your simulator should read
this input file, recognize the instructions, recognize the different fields of the instructions, and
simulate their execution on the architecture described below in this handout. Your will have to
implement the functional+timing simulator.
Please read the following a-g carefully before you start constructing your simulator.
The simulated architecture is a speculative, multi-issue, out of order CPU where:
(Assuming your first instruction resides in the memory location (byte address) 0x00000hex. That
is, the address for the first instruction is 0x00000hex. PC+4 points to next instruction).
a. The fetch unit fetches up to NF=4 instructions every cycle (i.e., issue width is 4).
b. A 2-bit dynamic branch predictor (initialized to predict weakly taken(t)) with 16-entry branch
target buffer (BTB) is used. It hashes the address of a branch, L, to an entry in the BTB using bits
7-4 of L.
c. The decode unit decodes (in a separate cycle) the instructions fetched by the fetch unit and stores
the decoded instructions in an instruction queue which can hold up to NI=16 instructions.
d. Up to NW=4 instructions can be issued every clock cycle to reservation stations. The
architecture has the following functional units with the shown latencies and number of reservation
stations.
Unit Latency (cycles) for operation Reservation
stations
Instructions executing
on the unit
INT 1 (integer and logic operations) 4
add, addi,slt
Load/Store 1 for address calculation 2 load buffer +
2 store buffer
fld
fsd
FPadd 3 (pipelined FP add) 3 fadd, fsub
FPmult 4 (pipelined FP multiply) 3 fmul
FPdiv 8 (non-pipelined divide) 2 fdiv
BU 1 (condition and target evaluation) 2 bne
e. A circular reorder buffer (ROB) with NR=16 entries is used with NB=4 Common Data Busses
(CDB) connecting the WB stage and the ROB to the reservation stations and the register file. You
have to design the policy to resolve contention between the ROB and the WB stage on the CDB
busses.
f. You need to perform register renaming to eliminate the false dependences in the decode stage.
Assuming we have a total of ** physical registers (p0, p1, p2, …p31). You will need to implement
a mapping table and a free list of the physical register as we discussed in class. Also, assuming
that all of the physical registers can be used by either integer or floating point instructions.
g. A dedicated/separate ALU is used for the effective address calculation in the branch unit (BU)
and simultaneously, a special hardware is used to evaluate the branch condition. Also, a
dedicated/separate ALU is used for the effective address calculation in the load/store unit. You
will also need to implement forwarding in your simulation design.
The simulator should be parameterized so that one can experiment with different values of NF, NI,
NW, NR and NB (either through command line arguments or reading a configuration file). To
simplify the simulation, we will assume that the instruction cache line contains NF instructions
and that the entire program fits in the instruction cache (i.e., it always takes one cycle to read a
cache line). Also, the data cache (single ported) is very large so that writing or reading a word into
the data cache always takes one cycle (i.e., eliminating the cache effect in memory accesses).
Your simulation should keep statistics about the number of execution cycles, the number of times
computations has stalled because 1) the reservation stations of a given unit are occupied, 2) the
reorder buffers are full. You should also keep track of the utilization of the CDB busses. This may
help identify the bottlenecks of the architecture.
You simulation should be both functional and timing correct. For functional, we check the register
and memory contents. For timing, we check the execution cycles.
Comparative analysis:
After running the benchmarks with the parameters specified above, perform the
following analysis:
1) Study the effect of changing the issue and commit width to 2. That is setting
NW=NB=2 rather than 4.
2) Study the effect of changing the fetch/decode width. That is setting NF = 2 rather than 4.
3) Study the effect of changing the NI to 4 instead of 16.
4) Study the effect of changing the number of reorder buffer entries. That is setting NR =
4, 8, and **
You need to provide the results and analysis in your project report.
Project language:
You can ONLY choose C/C++ (highly recommended) or Python to implement your project. No
other languages.
Test benchmark
Use the following as an initial benchmark (i.e. content of the input file prog.dat).
%All the registers have the initial value of 0.
%memory content in the form of address, value.
0, 111
8, 14
16, 5
24, 10
100, 2
108, 27
116, 3
124, 8
200, 12
addi R1, R0, 24
addi R2, R0, 124
fld F2, 200(R0)
loop: fld F0, 0(R1)
fmul F0, F0, F2
fld F4, 0(R2)
fadd F0, F0, F4
fsd F0, 0(R2)
addi R1, R1, -8
addi R2, R2, -8
bne R1,$0, loop
(Note that this is just a testbench for you to verify your design. Your submission should support
ALL the instructions listed in the table and you should verify and ensure the simulation
correctness for different programs that use those nine instructions. When you submit your code,
we will use more complicated programs (with multiple branches and all instructions in the table)
to test your submission).
Project submission:
You submission will include two parts: i) code package and ii) project report
1. Code package:
a. include all the source code files with code comments.
b. have a README file 1) with the instructions to compile your source code and 2) with
a description of your command line parameters/configurations and instructions of how
to run your simulator.
2. Project report
a. A figure with detailed text to describe the module design of your code. In your report,
you also need to mark and list the key data structures used in your code.
b. The results and analysis of Comparative analysis above
c. Your discussion peers and a brief summary of your discussion if any.
Project grading:
1. We will test the timing and function of your simulator using more complicated programs
consisting of the nine RISC V instructions.
2. We will ask you later to setup a demo to test your code correctness in a **on-1 fashion.
3. We will check your code design and credits are given to code structure, module design, and
code comments.
4. We will check your report for the design details and comparative analysis.
5. Refer to syllabus for Academic Integrity violation penalties.
Note that, any violation to the course integrity and any form of cheating and copying of
codes/report from the public will be reported to the department and integrity office.
Additional Note
For those who need to access departmental linux machines for the project, here is the information
log on into the linux machines
elements.cs.pitt.edu
For example, the command: ssh <username>@ elements.cs.pitt.edu
Note that you need first connect VPN in order to use these machines.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

掃一掃在手機打開當前頁
  • 上一篇:代寫INFO20003、代做SQL語言編程
  • 下一篇:菲律賓旅行證價格(補辦旅行證需要多少錢)
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優(yōu)化
    急尋熱仿真分析?代做熱仿真服務+熱設計優(yōu)化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發(fā)動機性能
    挖掘機濾芯提升發(fā)動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現(xiàn)代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現(xiàn)代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關于我們 | 打賞支持 | 廣告服務 | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          亚洲国产精品一区二区第一页 | 一区二区三区在线观看欧美| 欧美在线视频网站| 影音先锋亚洲精品| 一区二区91| 激情小说亚洲一区| 久久久欧美精品| 在线一区观看| 欧美精品自拍| 久久9热精品视频| 国产欧美日韩精品丝袜高跟鞋| 午夜激情综合网| 亚洲免费成人av| 亚洲国产二区| 伊大人香蕉综合8在线视| 国产精品日韩一区二区| 欧美日韩视频在线一区二区| 亚洲精品国产精品久久清纯直播| 国产香蕉97碰碰久久人人| 欧美日韩专区| 亚洲欧美日韩久久精品| 夜夜嗨av色一区二区不卡| 欧美日韩高清一区| 蜜臀av国产精品久久久久| 久久精品官网| 久久精品夜夜夜夜久久| 性色av一区二区三区| 亚洲第一天堂av| 狠狠色伊人亚洲综合成人| 含羞草久久爱69一区| 国产日韩欧美自拍| 狠狠操狠狠色综合网| 精品福利免费观看| 亚洲二区在线视频| 亚洲毛片播放| 亚洲一区二区免费视频| 亚洲影院免费观看| 性xx色xx综合久久久xx| 久久精品日韩欧美| 一本久久青青| 亚洲一区二区三区777| 国外视频精品毛片| 亚洲第一搞黄网站| 国产精品高精视频免费| 在线播放中文字幕一区| 国产欧美精品一区| 国产一区二区三区直播精品电影 | 亚洲欧洲另类| 国产精品性做久久久久久| 欧美午夜国产| 国产专区一区| 亚洲精品一区在线观看| 亚洲一区二区三区中文字幕在线 | 久久久精品2019中文字幕神马| 久久这里只有| 亚洲专区国产精品| 激情成人在线视频| 亚洲高清资源| 91久久国产精品91久久性色| 欧美亚洲免费电影| 亚洲精品视频一区| 国产精品资源在线观看| 国产热re99久久6国产精品| 一区二区视频免费完整版观看| 亚洲大胆美女视频| 欧美国内亚洲| 国产精品女同互慰在线看| 黑人极品videos精品欧美裸| 亚洲电影毛片| 午夜国产欧美理论在线播放 | 国产精品久久久久77777| 国产精品推荐精品| 亚洲精选一区| 欧美色视频在线| 国产精品青草久久| 久久久精品一品道一区| 欧美视频中文一区二区三区在线观看 | 亚洲精品久久久蜜桃| 欧美极品aⅴ影院| 亚洲视频在线一区观看| 国产精品乱码一区二三区小蝌蚪| 亚洲欧美久久久| 亚洲天堂偷拍| 国产伦理精品不卡| 久久久久在线| 亚洲人成啪啪网站| 国产精品日韩在线| 久久亚洲综合色| 99国产精品久久久久久久久久 | 一区在线免费观看| 欧美区一区二| 欧美在线视频全部完| 亚洲国产精品小视频| 欧美性片在线观看| 久久男女视频| 国产精品无码永久免费888| 欧美在线影院| 一本一本久久| 好吊日精品视频| 欧美三级第一页| 久久综合久久88| 9人人澡人人爽人人精品| 国产在线日韩| 欧美三级电影精品| 久久亚裔精品欧美| 亚洲四色影视在线观看| 影音先锋中文字幕一区二区| 国产精品va在线播放| 免费短视频成人日韩| 在线看成人片| 国产三级精品三级| 欧美精品1区2区3区| 久久激情视频| 亚洲尤物影院| 在线亚洲精品福利网址导航| 在线免费观看视频一区| 国产无一区二区| 国产精品九九| 欧美三级第一页| 欧美高清在线一区| 一本色道88久久加勒比精品| 在线播放日韩专区| 国产一区二区丝袜高跟鞋图片| 国产精品久久久久国产精品日日| 欧美成人自拍| 亚洲图片欧美一区| 亚洲精品社区| 91久久国产精品91久久性色| 亚洲春色另类小说| 欧美破处大片在线视频| 免费不卡在线观看| 久久一区二区精品| 夜色激情一区二区| 日韩一级精品视频在线观看| 最近看过的日韩成人| 在线看不卡av| 亚洲国产成人精品久久| 欧美日韩午夜| 欧美日韩视频在线一区二区观看视频 | 国产精品每日更新| 美女成人午夜| 午夜日韩av| 亚洲成色精品| 国产日本精品| 欧美视频一二三区| 美女精品国产| 午夜精品久久久久久久99樱桃 | 亚洲免费精品| 国产精品日韩精品| 欧美日韩国产成人在线免费| 欧美激情无毛| 在线精品视频一区二区三四| 久久精品国产一区二区电影| 欧美xx69| 午夜激情一区| 中文国产成人精品| 亚洲日本免费电影| 免费成人在线观看视频| 国产精品v欧美精品∨日韩| 国产欧美日本一区二区三区| 国产精品国产精品| 美女国产一区| 欧美另类变人与禽xxxxx| 久久一综合视频| 亚洲视频狠狠| 亚洲一级片在线看| 亚洲一区二区成人| 中文欧美字幕免费| 欧美一区二区三区在线视频| 美日韩精品视频免费看| 欧美日韩精品不卡| 在线观看日韩av| 久久久99爱| 欧美国产日韩二区| 美女视频黄 久久| 噜噜噜91成人网| 在线视频日韩精品| 亚洲五月六月| 老司机亚洲精品| 欧美性猛交xxxx乱大交退制版| 欧美日韩免费视频| 洋洋av久久久久久久一区| 久久九九国产| 欧美成人午夜| 欧美午夜一区二区| 国产精品老牛| 国产欧美日韩亚洲| 亚洲精品专区| 欧美日韩成人在线播放| 亚洲欧美在线免费观看| 久久国产精品亚洲va麻豆| 欧美日韩国产综合一区二区| 久热爱精品视频线路一| 久久精品官网| 久久久欧美精品sm网站| 欧美三级第一页| 亚洲经典三级| 久久久免费观看视频| 国产精品高潮久久| 99视频精品在线|