日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

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

代做CSC3050、代寫C/C++程序語言
代做CSC3050、代寫C/C++程序語言

時間:2024-11-28  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



CSC3050 Project 4: Cache Simulation
CSC3050 Teaching Group
November 20, 2024
1 Introduction
Cache is an important component of a CPU system that has a signiffcant impact on computer
performance by reducing memory access times. The focus of this project is to simulate the
cache in the RISC-V architecture to give you hands-on experience with the cache system
and its role in improving system performance.
2 Overview
This project is divided into three main parts:
1. Single-Level Cache Simulation: In this part, you are required to design and implement
 a cache simulator that enables the single-level cache simulation. Moreover,
you need to use the single-level cache simulator you implemented to compare the cache
performance under different cache parameters.
2. Multi-level Cache Simulation: In this part, based on the single-level cache simulator,
 you are required to further implement a multi-level cache simulator. You need
to examine further how a multi-level cache can improve performance compared to a
single-level cache.
3. Implementation of Pre-fetching: In this section, you are required to implement
a critical technique known as pre-fetching. Moreover, you need to compare the cache
performance with and without pre-fetching.
3 Single-Level Cache Simulation
• Implementation Requirements: You are required to implement a Cache class for
simulating a single-level cache (The code from [1] is a reference code for your). The
ffle structure and description you may use are shown in Table 1.
The simulated cache should be able to perform some parameter tuning, such as cache
size, block size, and associativity level. Besides that, you are required to simulate
1ffle name Discription
include/Cache.h Statement of the Cache class.
src/Cache.cpp Implementation of Cache class.
src/MainSinCache.cpp Main entrance of the single-level cache simulator.
src/MainMulCache.cpp Main entrance of the multi-level cache simulator.
Table 1: File structure and description of single-level and multi-level cache simulation.
Parameter Values
Cache Size 4KB to 1MB, incremented by 4X.
Block Size **Bytes to 256Bytes incremented by 2X.
Associativity 2 to ** incremented by 2X
Write Back True or False.
Write Allocate True of False.
Table 2: Parameters used in single-level cache simulation.
Write Back and Write Allocate policies using the LRU replacement algorithm in your
simulation. The parameters that are tunable and their ranges are listed in Table 2.
Finally, some performance data (e.g. miss rate of the cache and total access latency)
needs to be saved in a CSV ffle.
• Performance Evaluation: After the implementation, you are required to evaluate
the cache performance based on your simulator. We will provide you with a test trace
(test.trace) to facilitate the performance evaluation. What you can do includes but is
not limited to
– Analyzing the trend of Miss Rate with Block Size under different cache sizes
– Analyzing the change of Associativity with Miss Rate under different cache sizes
– Analyzing the amount of cache misses per thousand instructions under different
cache sizes
You are also free to design scenarios for performance evaluation as you wish. But
please analyze the performance in at least two different scenarios. You should provide
graphical or tabular data and conduct the analysis based on the data mentioned above.
The results and analysis should be given in your report.
4 Multi-Level Cache Simulation
• Implementation Requirements: You are required to simulate the multi-level cache
in this part based on your single-level cache simulator.
• Performance Evaluation: You should conduct the comparison between the singlelevel
 and multi-level cache system whose parameters are given in Table 3 and Table
4, respectively. The cache miss latency is set to 100 CPU cycles. Also, graphical or
2tabular data are required and you should put the comparisons and analysis in your
report.
Level Capacity Associativity Block Size Write Policy Hit Latency
L1 16 KB 1 way 64 Bytes Write Back 1 CPU Cycle
Table 3: Cache parameters for single-level cache.
Level Capacity Associativity Block Size Write Policy Hit Latency
L1 16 KB 1 way 64 Bytes Write Back 1 CPU Cycle
L2 128 KB 8 ways 64 Bytes Write Back 8 CPU Cycle
L3 2 MB 16 ways 64 Bytes Write Back 20 CPU Cycle
Table 4: Cache parameters for multi-level cache.
5 Pre-Fetching Implementation
• Implementation Requirements: Based on the multi-level cache simulation, you are
required to further add the pre-fetching technique. Specifically, the mechanism is to
prefetch data in advance based on a detected memory access pattern. In this project,
you will implement a pre-fetching algorithm capable of detecting fixed-stride memory
access patterns; the pseudo-code of the algorithm is summarized in Algorithm 1.
Algorithm 1 Stride-Based Pre-fetching Algorithm
1: initialize: stride = 0, is prefetch = false.
2: for Each Memory Access do
3: Calculate the memory access stride (the distance between the current memory access
address and the address of the previous memory access with the same operation).
4: if is prefetch = false and there are more than three times with the same stride then
5: is prefetch = true
6: prefetch address = current address + stride
7: Prefetching(prefetch address)
8: end if
9: if is prefetch = true and more than three times the different strides are detected
then
10: is prefetch = false.
11: Stop prefecting.
12: end if
13: end for
• Performance Evaluation: You are required to compare the performance of a multilevel
cache with and without pre-fetching. The setting of the multi-level cache is the
same as that in the previous part. Moreover, the test prefetch.trace is the test trace
3specifically designed for prefetching; you can do the performance comparison based on
it. The results should be included in your report.
6 Submission
For this project, you must use C/C++ to implement the cache simulator. If you use other
languages, you will get a 0 score. You need to submit the following files:
• src/*: include all source code files
• include/*: include all header files
• CMakelists.txt: the cmake file for your project
• project-report.pdf: a detailed description of your implementation. The specific things
that need to be included are as follows:
– The implementation details of your simulator.
– Performance evaluation and analysis mentioned above.
Please compress all files into a single zip file and submit it to the BlackBoard. The file name
should be your student ID, like 22101**40.zip.
7 Grading Details
The overall score will be calculated as follows:
• Single-level cache simulation code: 20%
• Multi-level cache simulation code: 20%
• Pre-Fetching implementation code: 40%
• Report: 20%
For the code, we will check whether your code can run or not. Please make sure that your
code runs correctly. If the code does not run, it will be directly marked as 0 points.
8 About the reference code
To reduce the difficulty and complexity of implementation, we encourage you to refer to
existing code like [1]. This project is also designed based on [1]. However, if you simply
submit the code from the reference [1] or only do simple tasks like adding comments, we
consider that you haven’t put much effort and your grade will be directly marked as zero.
References
[1] Hao He, “RISCV-Simulator,” https://github.com/hehao98/RISCV-Simulator, 2019.
4

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



 

掃一掃在手機打開當前頁
  • 上一篇:CS 551代寫、c/c++設計編程代做
  • 下一篇:MS3251代寫、代做Python/Java程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
  • 短信驗證碼 豆包 幣安下載 目錄網

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

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

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        欧美精品v日韩精品v国产精品| 欧美成人亚洲| 一区二区三区在线观看国产| 国产精品视频1区| 国产亚洲一区二区三区| 亚洲欧美日韩电影| 欧美精品一区二区三区四区| 国产精品色在线| 国产日韩综合一区二区性色av| 国外视频精品毛片| 欧美高清成人| 久久久五月天| 国产精品亚洲综合久久| 蜜臀91精品一区二区三区| 一区二区视频免费在线观看| 久久精品在线视频| 日韩视频在线你懂得| 欧美寡妇偷汉性猛交| 亚洲欧美日韩成人| 亚洲欧美一区二区视频| 亚洲免费观看视频| 久久精品视频一| 亚洲福利国产精品| 国产精品视频xxx| 国产欧美午夜| 欧美高清视频一区| 欧美激情小视频| 国产精品久久久久久亚洲调教| 欧美大片网址| 欧美人成免费网站| 亚洲国产成人porn| 亚洲久久成人| 狠狠色丁香久久婷婷综合_中| 亚洲欧洲日本国产| 亚洲私人影院在线观看| 午夜精品一区二区三区电影天堂| 国产偷国产偷亚洲高清97cao| 免费欧美在线视频| 欧美区视频在线观看| 欧美理论大片| 欧美巨乳在线观看| 久久亚洲私人国产精品va| 老色批av在线精品| 国产精品嫩草影院av蜜臀| 欧美日本中文字幕| 中日韩美女免费视频网站在线观看| 欧美日韩123| 欧美国产日韩二区| 新片速递亚洲合集欧美合集| 国产精品久久久久av| 国产一区香蕉久久| 久久久久久一区二区三区| 国产在线欧美日韩| 欧美午夜精品一区二区三区| 欧美专区福利在线| 欧美日韩免费在线观看| 欧美一区二区免费视频| 在线亚洲+欧美+日本专区| 在线国产精品播放| 国产麻豆精品在线观看| 中文国产成人精品久久一| 国产精品无码永久免费888| 亚洲精品免费电影| 欧美日韩爆操| 在线看片欧美| 亚洲欧美国内爽妇网| 亚洲精品免费一区二区三区| 欧美精品一区二区三区在线看午夜| 日韩视频在线永久播放| 激情亚洲一区二区三区四区| 亚洲图片在区色| av成人免费在线观看| 免费成人av在线看| 欧美精品国产一区| 亚洲精品视频在线观看免费| 尤物九九久久国产精品的分类| 精品白丝av| 国产精品久久久久久久久果冻传媒| 亚洲欧美日韩在线| 91久久国产综合久久91精品网站| 免费av成人在线| 欧美国产精品| 99视频在线精品国自产拍免费观看| 在线免费不卡视频| 久久在线精品| 国产精品影视天天线| 日韩午夜三级在线| 老司机67194精品线观看| 一区二区国产精品| 一区二区免费看| 9人人澡人人爽人人精品| 久久国产精品毛片| 久久久噜噜噜久久久| 久久精品视频va| 欧美精品一区二区三区久久久竹菊| 久久久精品国产免大香伊| 午夜精品视频在线观看| 亚洲精品久久视频| 先锋影音一区二区三区| 玖玖在线精品| 欧美一级淫片aaaaaaa视频| 欧美日韩高清一区| 欧美激情一二区| 久久国产欧美日韩精品| 国产日韩av一区二区| 亚洲精品欧美在线| 久久精品中文字幕免费mv| 亚洲欧美日韩国产一区二区三区| 亚洲丰满少妇videoshd| 欧美高清影院| 欧美顶级少妇做爰| 国产精品尤物福利片在线观看| 亚洲永久精品国产| 国产婷婷色综合av蜜臀av| 亚洲高清av| 久久亚洲美女| 日韩视频中文| 久久国产直播| 午夜精品久久久久久久蜜桃app| 国产久一道中文一区| 国产精品久久久久久久久动漫| 国产精品一区二区三区免费观看| 在线不卡视频| 亚洲精品资源美女情侣酒店| 在线视频亚洲欧美| 米奇777在线欧美播放| 精品不卡视频| 狂野欧美性猛交xxxx巴西| 欧美日韩一区二区在线| 另类国产ts人妖高潮视频| 亚洲欧洲综合| 玉米视频成人免费看| 欧美国产日产韩国视频| 欧美一区二区大片| 亚洲精选国产| 欧美91福利在线观看| 亚洲第一综合天堂另类专| 亚洲自拍啪啪| 亚洲乱码国产乱码精品精可以看| 欧美有码在线观看视频| 麻豆av一区二区三区| 亚洲国产精品悠悠久久琪琪| 欧美性一区二区| 国产欧美在线观看一区| 国产精品国产三级国产普通话99| 9色精品在线| 亚洲免费一在线| 国产一区二区三区成人欧美日韩在线观看| 欧美顶级艳妇交换群宴| 一区视频在线播放| 亚洲午夜精品国产| 国产一区二区高清不卡| 欧美一级大片在线免费观看| 亚洲免费伊人电影在线观看av| 国产亚洲一级高清| 欧美电影专区| 欧美体内she精视频| 亚洲制服av| 国产一区二区观看| 日韩午夜av| 亚洲精品乱码久久久久久蜜桃麻豆| 在线欧美亚洲| 亚洲一区免费在线观看| 亚洲老司机av|