国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

代寫CS 2410 Computer Architecture

時間:2024-03-24  來源:合肥網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語言編程
  • 下一篇:菲律賓旅行證價格(補辦旅行證需要多少錢)
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    久久在精品线影院精品国产| 亚洲精品偷拍视频| 国产欧美高清在线| 青青草久久网络| 日本三日本三级少妇三级66| 亚洲视频欧美在线| 亚洲欧美日韩综合一区| 亚洲高清在线观看一区| 亚洲精品日韩激情在线电影| 亚洲一区二区三区乱码aⅴ蜜桃女| 国产精品久久久久9999小说| 国产精品美女久久| 伊甸园精品99久久久久久| 亚洲日本精品国产第一区| 欧美一区二区激情| 欧美在线精品免播放器视频| 黄色一级在线视频| 国产美女扒开尿口久久久| 国产在线一区二区三区播放 | 日本va中文字幕| 欧美图片激情小说| 国产人妖伪娘一区91| 777精品视频| 久久亚洲电影天堂| 日本阿v视频在线观看| 国产一区视频在线| 91免费国产精品| 国产精品久久久久一区二区| 亚洲伊人婷婷| 国产伦精品一区二区三区高清版| 国产美女作爱全过程免费视频| 国产精品视频区1| 亚洲综合在线小说| 黄黄视频在线观看| 久久精品第九区免费观看| 精品中文字幕在线观看| 日韩精品视频一区二区在线观看| 国产精品视频永久免费播放| 日韩一级在线免费观看| 国产日产久久高清欧美一区| 色婷婷综合久久久久中文字幕1| 欧美激情综合色| 精品亚洲第一| 国产精品视频公开费视频| 日韩av电影中文字幕| 国产麻豆乱码精品一区二区三区| 视频在线一区二区| 日本高清视频一区二区三区| 国产精品av在线播放| 久久人人97超碰人人澡爱香蕉| 欧美极品在线播放| 日韩亚洲在线视频| 国产精品一区二区久久精品| 国产精品国产三级欧美二区| 日本欧美色综合网站免费| 97精品免费视频| 午夜一区二区三区| 欧美日韩三区四区| 91免费视频网站在线观看| 日韩视频免费在线观看| 欧美一级片免费播放| 久久手机免费视频| 国模吧一区二区三区| 国产精品视频一区二区高潮| 人妻无码视频一区二区三区| 色琪琪综合男人的天堂aⅴ视频| 人妻无码视频一区二区三区| 国产福利视频一区二区| 国内精品一区二区| 国产精品久久亚洲| 国产视频观看一区| 在线一区亚洲| 国产高清免费在线| 精品人妻一区二区三区四区在线| 久久中国妇女中文字幕| 97精品国产97久久久久久春色| 亚洲影院色在线观看免费| 久久精品99国产| 精品网站在线看| 无码人妻h动漫| 国产精品欧美激情在线观看| 高清欧美性猛交| 欧美日韩一区二区三区免费| 一本久久a久久精品vr综合| 日韩在线精品一区| 91精品视频免费看| 免费国产黄色网址| 日本丰满少妇黄大片在线观看| 国产精品福利在线观看网址| 国产福利久久精品| 日韩av高清在线看片| 北条麻妃在线视频观看| 欧美综合国产精品久久丁香| 精品一区二区三区国产| 日本a级片电影一区二区| 欧美激情第三页| 国产精品天天av精麻传媒| 欧美在线视频一区二区三区| 99视频免费观看蜜桃视频| 极品尤物一区二区三区| 伊人精品久久久久7777| 精品国产一区二区三区麻豆免费观看完整版 | 日韩免费在线观看av| 国产精品视频播放| 日韩亚洲综合在线| 久久久久久网站| 国产精品6699| 久久久视频精品| 久久久久国产精品视频| 91麻豆国产精品| 热99在线视频| 91黄在线观看| 91精品国产91久久久久久最新| 日韩久久久久久久久久久久久| 中文字幕一区二区三区四区五区六区| 欧美成人全部免费| 精品久久久久久中文字幕动漫| 国产精品精品视频一区二区三区| 国产精品久久久久久网站| 欧美精品一本久久男人的天堂| 久久福利网址导航| 久久亚洲国产精品| 亚洲最大福利视频| 日韩国产欧美精品| 美国av一区二区三区| aaa毛片在线观看| 久久99国产精品一区| 久久综合伊人77777| 一本色道久久综合亚洲精品婷婷| 色欲av无码一区二区人妻| 欧美精品一区二区性色a+v| 国产欧美丝袜| 久久久久久免费看| 欧美激情中文网| 日韩精品手机在线观看| 国产日韩欧美中文| 国产精品中文在线| 日韩中文字幕久久| 插插插亚洲综合网| 日韩欧美黄色大片| 国产精品一区=区| 国产成人精品综合久久久| 一区二区三区日韩视频| 欧美精品七区| 久久久久久免费看| 亚洲一区二区三区777| 国内久久久精品| 久久久久一区二区| 午夜精品一区二区三区在线视| 国产在线视频不卡| 国产ts一区二区| 国产99视频精品免费视频36| 日本欧美一二三区| 91精品久久久久久久久青青| 欧美巨大黑人极品精男| 国内外免费激情视频| 精品国内自产拍在线观看| 日本中文字幕不卡免费| 91精品视频在线看| 伊人久久av导航| 国产精品亚洲欧美导航| 另类美女黄大片| 国产欧美日韩中文| 欧美激情一区二区三区高清视频| 欧美大陆一区二区| 久久夜色精品国产| 国内精品视频免费| 欧美成人亚洲成人| 国产日韩中文字幕| 一区二区三区电影| www.国产二区| 色播五月综合| 日韩有码片在线观看| 日本成人在线不卡| 国产精品国产亚洲精品看不卡15| 91九色国产视频| 亚洲欧美日韩不卡一区二区三区| 国产日韩一区二区| 亚洲一区不卡在线| 国产激情在线看| 美国av一区二区三区| 国产精品国产福利国产秒拍| 国产日韩在线一区二区三区| 亚洲欧洲另类精品久久综合| 久久男人的天堂| 国内精品久久久久久久久| 一级特黄录像免费播放全99| 久久精品xxx| 国产美女永久无遮挡| 日日噜噜夜夜狠狠久久丁香五月| 九色91视频| 国产精品一二区| 欧美做暖暖视频| 美女国内精品自产拍在线播放 | 精品国产一区av| 国产一区二区三区色淫影院 | 精品久久久久久无码中文野结衣| 91精品久久久久久久久久| 国内精品久久久久影院优| 日韩av大全|