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

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

CSC3050代做、Java/Python編程代寫
CSC3050代做、Java/Python編程代寫

時(shí)間:2025-03-22  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



CSC3050 Project 3: RISC-V Simulator
1 Background
Efficient execution of instructions in a RISC-V pipeline relies on avoiding data hazards, where an instruction
depends on the result of a previous instruction that has not yet completed. Data hazards can cause stalls,
reducing the efficiency of the processor. To mitigate these hazards, instruction reordering and specialized fused
operations like fmadd (fused multiply-add) can be utilized.
This assignment has two parts:
• Implementing the fmadd Instruction In this part, you will implement the fused multiply-add (fmadd)
instruction, which performs a multiplication followed by an addition in a single step. This reduces
the number of instructions executed and can eliminate certain data hazards, leading to more efficient
computation.
• Reordering Instructions to Avoid Data Hazards You will be given a sequence of RISC-V instruc tions (add/mul) that suffer from data hazards. Your task will be to rearrange them while maintaining
correctness. This exercise will help you understand the importance of instruction scheduling in hazard
mitigation and performance optimization.
By completing this assignment, you will gain some basic hands-on experience with hazard avoidance
strategies in RISC-V, while learning how fmadd can be used to optimize multiplication-addition sequences and
how instruction reordering can improve pipeline execution efficiency.
2 RISC-V GNU Toolchain
RISC-V GNU Toolchain is already in your Docker, so you do not need to download it from the official link.
But we highly suggest that you open the official link and read the README.
To set up the RISC-V development environment, you need to compile and install the RISC-V GNU toolchain.
This toolchain supports the RISC-V 32I instruction set with M extension (integer multiplication and division),
based on the RISC-V Specification 2.2. Follow these steps to configure and compile the toolchain:
Create a build directory, configure the toolchain, and compile it with the following commands:
mkdir build; cd build
../configure --with-arch=rv32im --enable-multilib --prefix=/path/to/riscv32i
make -j$(nproc)
3 A Simple RISC-V64I Simulator
We use a modified version of Hao He‘s simulator. You can find the modified repository:
1
It is a simple RISC-V Emulator suppprting user mode RV64I instruction set, from PKU Computer Architecture
Labs, Spring 2019.
3.1 Compile
mkdir build
cd build
cmake ..
make
3.2 Usage
./Simulator riscv-elf-file-name [-v] [-s] [-d] [-b strategy]
3.3 Parameters
• -v for verbose output, can redirect output to file for further analysis.
• -s for single step execution, often used in combination with -v.
• -d for creating memory and register history dump in dump.txt.
• -b for branch prediction strategy (default BTFNT), accepted parameters are AT, NT, BTFNT, and BPB.
– AT: Always Taken
– NT: Always Not Taken
– BTFNT: Back Taken Forward Not Taken
– BPB: Branch Prediction Buffer (2-bit history information)
4 Part I: RISC-V32I Simulator
The first task in this assignment is to change the RISC-V64I simulator to be RISC-V32I simulator. This is an
easy job, but we suggest that you carefully read the code and know the logical structure of the simulator.
You can re-compile the sample test cases to test your RISC-V32I simulator. Take quicksort as an example:
riscv32-unknown-elf-gcc -march=rv32i \
test/quicksort.c test/lib.c -o riscv-elf/quicksort.riscv
You can change -march=rv32i to -march=rv32imf for the remain part of the assignment.
5 Part I: Fused Instructions
The fused instruction is part of the RISC-V ISA’s F (single-precision floating-point) and D (double-precision
floating-point) extensions. These extensions provide support for floating-point arithmetic operations. In this
project, you only need to implement the integer version.
2
Take fmadd.s instruction as an example.
This instruction performs a fused multiply-add operation for floating-point numbers, which means it computes
the product of two floating-point numbers and then adds a third floating-point number to the result, all in a
single instruction. Obviously, this operation is beneficial for both performance and precision, as it reduces the
number of rounding errors compared to performing the multiplication and addition separately.
In this assignment, you are required to implement the fused instruction for integer type. We used the same
format as the standard RISCV R4 instruction. We used the reserved custom opcode 0x0B as our opcode.
Inst Name funct2 funct3 Description
fmadd.i Fused Mul-Add 0x0 0x0 rd = rs1 * rs2 + rs3
fmadd.u Unsigned Fused Mul-Add 0x1 0x0 rd = rs1 * rs2 + rs3
fmsub.i Fused Mul-Sub 0x2 0x0 rd = rs1 * rs2 - rs3
fmsub.u Unsigned Fused Mul-Sub 0x3 0x0 rd = rs1 * rs2 - rs3
fmnadd.i Fused Neg Mul-Add 0x0 0x1 rd = -rs1 * rs2 + rs3
fnmsub.i Fused Neg Mul-Sub 0x1 0x1 rd = -rs1 * rs2 - rs3
5.1 R4 Instruction
R4 instructions, as in Figure 1, involve four registers (rs1, rs2, rs3, rd), which is different from those you are
familiar with. To use standard R4 format, you need to add F-extension when compiling. In other words you
should use -march=rv32if but NOT change the compiling commands of RISC-V GNU Toolchain. (Again,
we are not using floating-points.)
Figure 1: R4 format
5.2 Cycle counts
The fused instruction needs more cycles to process, so we define that our fused instruction needs 3 more
cycles to execute. Specifically, the number of cycles required to complete this instruction is +3 compared to
standard instructions. The mul instruction also incurs an additional 3 cycles, making fmadd more efficient in
terms of cycle count.
Suppose add instruction takes 5 cycles to complete, then we have:
add(1) + mul(3) = 4 > fmadd(3)
5.3 Other Important Information
We also provide some basic test cases for reference. Please refer to the README and /test-fused under
the root of the project.
Also, you can try to compare the number of cycles between fused instructions and basic mul and add instruc tions.
3
6 Part I: Disable Data Forwarding
Add an option -x to disable data forwarding.
You can modify the logical of parsing arguments in the method parseParmeters in MainCache.cpp.
7 Part II: Introduction
In this part of the assignment, you will analyze a given sequence of RISC-V instructions that suffer from data
hazards. (With forwarding turned off) Your task is to rearrange these instructions while maintaining correct ness, ensuring that the processor pipeline executes efficiently. Then, you should be able to further optimize it
by substituting add/mul operations with fmadd operations. By strategically reordering instructions, you will
learn how to reduce stalls, improve instruction throughput, and optimize execution flow in a pipelined RISC-V
architecture.
8 Part II: Rearrange
In the part2.s file, you will find a RISC-V program that contains several data hazards affecting pipeline
efficiency. Your task is to rearrange the instructions to minimize stalls while ensuring the program produces
the same output as the original. You should start by reviewing and running part2.s in the simulator to
understand its functionality and identify potential improvements. Your optimized version should preserve
correctness while reducing the number of stalled cycles. Grading will be based on both correctness and
execution efficiency (fewer cycles due to reduced hazards). Name your result with part2 p2.s
9 Part II: Using fmadd.i
After optimizing part2.s, you may identify opportunities to replace certain instruction sequences with the more
efficient fmadd.i instruction (based on either part2.s or part2 p2.s). The final optimized file, part2 p3.s,
should produce the same output as both part2.s and part2 p2.s while improving execution efficiency. Since
fmadd.i combines multiplication and addition into a single operation, the total cycle count should be further
reduced. Grading will be based on both correctness and execution efficiency. Name your optimized file
part2 p3.s before submission.
10 Grading Criteria
The maximum score you can get for this lab is 100 points, and it is composed by the following components:
• Part 1 correctness of implementation 55 pts
• Part 2 correctness of part2 p2.s 20 pts
• Part 2 efficiency of part2 p2.s 20 pts
• A short report about anything you have learn in this project 5 pts
• Part 2 correctness of part2 p3.s Extra Credit 1 pts
• Part 2 efficiency of part2 p3.s Extra Credit 1 pts
4
11 Submission
You should make sure your code compiles and runs. Then, it should be compressed into a .zip file and
submitted to BlackBoard. Any necessary instructions to compile and run your code should also be doc umented and included. Finally, you are also required to include a report containing the results of your test
case execution.


請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機(jī)打開當(dāng)前頁(yè)
  • 上一篇:46-886 Machine Learning Fundamentals
  • 下一篇:代寫MATH3030、代做c/c++,Java程序
  • 無相關(guān)信息
    合肥生活資訊

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

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    天堂av在线中文| 日本一区二区三区四区五区六区| 91久久中文字幕| 91精品久久久久久久久久久| 99精品在线直播| 久久人91精品久久久久久不卡| 国产成人精品免高潮费视频 | 日韩欧美视频一区二区三区四区| 日本高清一区| 蜜桃麻豆91| 国产精品永久入口久久久| 91精品啪aⅴ在线观看国产| 久久亚裔精品欧美| 国产成人精品亚洲精品| 欧美激情亚洲精品| 日韩欧美不卡在线| 国产在线播放一区二区| 91精品视频播放| 国产精品成人av性教育| 亚洲国产一区二区三区在线 | 痴汉一区二区三区| 好吊色欧美一区二区三区四区| 国产精品中文字幕久久久| 97精品欧美一区二区三区| 国产精品日韩欧美大师| 亚洲a成v人在线观看| 国产日韩亚洲欧美在线| 色偷偷91综合久久噜噜| 亚洲三区视频| 国产日韩一区二区三区| 国产成人久久久精品一区| 亚洲a成v人在线观看| 国产伦精品一区二区三区照片91| 国产二区一区| 性欧美精品一区二区三区在线播放 | 亚洲在线观看视频| 男人亚洲天堂网| 日韩视频第一页| 日本一区二区三区视频在线观看| 成人精品网站在线观看| 欧美大成色www永久网站婷| 日本久久久久久久| 99色精品视频| 中文字幕在线亚洲三区| 国产欧美精品在线| 欧美激情一区二区三级高清视频 | 亚洲高清精品中出| 成人精品久久久| 亚洲熟妇av日韩熟妇在线| 成年人网站国产| 亚洲欧美一区二区原创| av一本久道久久波多野结衣| 午夜欧美大片免费观看| 久久久亚洲天堂| 日韩欧美一区二区三区久久婷婷| 99se婷婷在线视频观看| 亚洲a级在线播放观看| 久久精品国产一区二区三区不卡| 欧美一级日本a级v片| 久久视频国产精品免费视频在线| 国产综合香蕉五月婷在线| 亚洲一区久久久| 国产ts一区二区| 国产日韩一区二区| 午夜精品在线视频| 国产精品福利小视频| 国产免费xxx| 日本午夜人人精品| 久久成人18免费网站| 久久久人人爽| 国产综合中文字幕| 热久久美女精品天天吊色| 久久伊人免费视频| 久久视频免费在线| 国产日产欧美a一级在线| 日本久久久a级免费| 欧美激情网友自拍| 国产精品天天av精麻传媒| 成人欧美一区二区三区黑人| 欧美性视频在线播放| 亚洲一区三区电影在线观看 | 国产精品美女久久久久av福利| 91久久久久久久久| 欧美视频1区| 都市激情久久久久久久久久久 | 久久久久久久久久久一区| 国产区日韩欧美| 蜜桃成人在线| 欧美一级片中文字幕| 亚洲精品视频一区二区三区 | 亚洲欧美久久234| 欧美成年人在线观看| 久久久国产精品视频| 国产福利精品视频| 久久久久久伊人| 久久久久久久久久码影片| 国产xxxxx视频| 久久久99精品视频| 国产精品 日韩| 91高清免费视频| 久久精品在线免费视频| 国产一区在线观| 国产精品一区二区久久久久| 精品无码久久久久久久动漫| 狠狠精品干练久久久无码中文字幕| 日韩欧美激情一区二区| 欧美中文字幕视频| 日韩欧美第二区在线观看| 欧美日韩黄色一级片| 欧美一区国产一区| 在线免费一区| 99视频免费播放| 久久久这里只有精品视频| 成人久久精品视频| 91精品国产色综合久久不卡98| 国产日韩欧美二区| 国产主播欧美精品| 99精品一区二区三区的区别| 国产黄页在线观看| 国产精品高潮呻吟久久av黑人| 宅男噜噜99国产精品观看免费| 亚洲精品免费网站| 欧美日韩视频在线一区二区观看视频 | 精品国产综合久久| 日日摸天天爽天天爽视频| 国产中文字幕亚洲| www.欧美黄色| 久久亚洲精品毛片| 天堂资源在线亚洲资源| 日本黄网站色大片免费观看| 欧美牲交a欧美牲交| 91久久久在线| 欧美人成在线视频| 欧美怡红院视频一区二区三区| 国产一级不卡视频| 久久视频这里只有精品| 日本午夜在线亚洲.国产| 蜜桃传媒视频第一区入口在线看| 国产尤物91| 久久久久久久久电影| 在线观看一区二区三区三州| 蜜桃免费区二区三区| 国产精品国色综合久久| 欧美日韩一区二区在线免费观看| 97干在线视频| 国产精品欧美日韩| 国产精品久久亚洲7777| 亚洲伊人久久综合| 欧美精品一区在线| 99免费在线观看视频| 色偷偷av亚洲男人的天堂| 亚洲日本欧美在线| 成人乱人伦精品视频在线观看| 久久精品网站视频| 爽爽爽爽爽爽爽成人免费观看| 精品免费国产| 蜜臀久久99精品久久久酒店新书| 久久久久亚洲精品成人网小说| 亚洲精品欧美一区二区三区| 精品一区二区三区免费毛片| 色噜噜久久综合伊人一本| 少妇一晚三次一区二区三区| 91免费版网站在线观看| 亚洲精品中文字幕在线| 国产精品一区二| 亚洲最大福利视频网| 成人免费网站在线| 亚洲国产精品一区二区第四页av| 国产九色porny| 亚洲天堂第一区| 91精品国产高清久久久久久91裸体 | 国产九九精品视频| 欧美激情视频一区二区| 99视频在线免费| 视频一区二区在线| 国产二区不卡| 日本不卡免费新一二三区| 国产高清在线一区| 欧美精品卡一卡二| 久久综合久久八八| 国产噜噜噜噜噜久久久久久久久| 久久香蕉国产线看观看av| 国产乱码精品一区二区三区不卡| 欧美激情亚洲视频| 国产成人在线小视频| 欧美午夜精品久久久久免费视| 欧美精品一二区| 久久久免费观看| 欧美精品成人一区二区在线观看| 九九热视频这里只有精品| 国产成人a亚洲精v品无码| 精品少妇一区二区三区在线| 亚洲一区在线直播| 国产精品毛片一区视频| 国产精品∨欧美精品v日韩精品| 激情综合网俺也去| 午夜啪啪福利视频| 久久这里有精品视频| 久久精品国产综合精品| 国产欧美一区二区三区视频|