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

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

CSC3050代做、C++程序設計代寫
CSC3050代做、C++程序設計代寫

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



CSC3050 Project 3: RISC-V Simulator with RVV
1 Background
RISC-V, an open standard instruction set architecture (ISA), has rapidly become a
pivotal force in academic research and industrial development due to its flexibility
and open-source nature. Unlike proprietary ISAs, RISC-V offers the freedom for
developers to customize and extend the architecture, making it an ideal platform
for innovation in research, education, and the design of specialized hardware. One
of its most impactful extensions is the RISC-V Vector Extension (RVV), which
introduces efficient vector processing capabilities—a cornerstone of modern high performance computing. This is especially critical for applications like machine
learning, cryptography, and scientific simulations, where parallel data processing is
essential for improving computational speed and efficiency.
In this project, you are tasked with extending the QTRVSim RISC-V simulator
to support vector operations by implementing some of the RVV instructions.
After reviewing the number of cycles, you will get a feeling of how this is faster
than conducting element-wise operations.
Start early, this project can be time-consuming if you are not familiar with
simulators.
2 QTRVSim
QTRVSim is a RISC-V CPU simulator for education, where you can try its online
version on this link. Just in case you want to try different instructions, you can refer
to this page: RISC-V Instruction Set Specifications. A helpful video about using
QTRVSim can be found on Youtube
After familiarizing yourself with the QtRVSim manual, you can begin planning how
to integrate RVV instructions into the existing implementation. The simulator’s
source code, written in C++ and including both the core simulation functions and
graphical user interfaces (GUIs), can be found in the repository at this link. To test
your modifications, QtRVSim offers two methods for simulating assembly code: GUI
or command-line prompts.
Note: For this project, you are not required to modify any of the GUI components.
Your primary goal is to ensure that the RVV instructions function correctly when
using command-line prompts. Another objective in this project is to save the number
of cycles; the smaller the number you get, the better the score you get.
1
2.1 How to run
We give the example of running QTRVSim on Ubuntu with the terminal. You can
follow these steps:
1. We assume you already have the necessary packages for compiling cpp. If
not, you can easily find tutorial for them on the internet.
2. Install QT6 (QT5 does not work in most cases) with sudo apt install qt6-
base-dev. You might need sudo apt update first, and make sure you are
installing QT6, not QT5.
3. Download QTRVSim from the given repository.
4. Make a new directory for building files (mkdir build; cd build)
5. cmake -DCMAKE BUILD TYPE=Release /path/to/qtrvsim
6. make -j X, where X is the number of threads you want to use
7. If everything goes correctly, you can use ./target/qtrvsim cli –asm XXXXX.S
to run your .S file.
8. Via ./target/qtrvsim cli –help, you can check all helpful arguments.
3 RVV Instructions
In this assignment, you are required to implement the following RVV instructions
(suppose max vector size is **):
1. vsetvl rd, rs1, rs2: sets the length register vl to rs1 and rd, also sets the
register holding the type of vector to rs2 (8/16/**).
2. vadd.vv vd, vs2, vs1: adds two vectors vs2 and vs1, and stores the result
in vd
3. vadd.vx vd, vs2, rs1: adds rs1 to each element of vector vs2, and stores
the result in vd
4. vadd.vi vd, vs2, imm: adds the scalar value imm to each element of vector
vs2, and stores the result in vd
5. vmul.vv vd, vs2, vs1: conducts dot production on two vectors vs2 and vs1,
and stores the result in vd
6. vlw.v vd, (rs1): loads elements stored starting at rs1 into vector vd. The
length to load is dependent on the length stored at vl and the unit length
specified earlier.
7. vsw.v vs3, (rs1): stores vector elements of vs3 into memory starting at rs1.
The length to load is dependent on the length stored at vl and the unit length
specified earlier.
2
Figure 1: Matrix stored as vector
The whole point of this project is that, through the implementation, you will
understand why are vector operations is much faster than manipulate each ele ment individually. For example, writing 100 elements into memory will require 100
individual store instructions if in an element-wise manner. However, using vector
write, you only need to do one vector store instruction.
A detailed explanation of RVV instructions can be found at this manual. Reminder:
Do not forget to update vl when switching to operate on vectors with different
lengths.
4 Matrix Multiplication
After implementing and testing the aforementioned functionalities, you are required
to write a .S file that conduct matrix to matrix multiplication.
Ci,j =
X Ai,kBk,j
k
The actual matrix will be stored as a vector in memory, as shown in Figure 1. In
order to conduct vector multiplication, the size of the matrix n × m will be given.
We require you to generate two random matrices with sizes of 20 × 46 and
46 × 50 where elements can be of your own choice.
5 Tricks
There are several tricks you can apply to reduce cycle counts.
1. Reduction (required): This is similar to calculate the summation of a
vector, but more efficiently. The basic requirement is that you conduct this
summation on each element one-by-one, which leads to excessive cycles.
Another approach is to do binary split, i.e. repeatedly decompose the a vector
of size n into 2 vectors of size n//2, and then conduct vadd. There are also
other trick for conducting reduction, and you can explore any of them.
3
Possible reduction:
(a) scalar loop
(b) vector shift
(c) reduction instruction
(d) ...
2. Chaining (Extra credit): When conducting vector operations, it is not nec essary to wait for the entire instruction to complete. As shown in Figure 2, it
is possible to conduct VADD on the first element, right after obtaining the
first element of VMUL. A much better illustration can be found at Prof.Hsu’s
slides at this link.
Figure 2: chaining
6 Instruction on Implementation
The code involved in QTRVSim is quite complicated. Luckily, you only need to
focus on few script files.
1. src/machine/instruction.cpp: Edit this file to add new instructions. The
boxed fields are:
• instruction name
• instruction enum type (you can edit this by yourself; no need to follow
the example)
• input types (you can go through instruction.cpp to see what char is for
what type)
• machine code (hexadecimal)
• mask for effective bits for instruction (hexadecimal)
• customize flags (you can edit this by yourself; no need to follow the
example)
2. src/machine/core.cpp: Main pipeline of the simulator. You can find fetch,
decode, execute, writeback, memory in it, and edit these codes for your con venience.
4
3. src/machine/execute/alu.cpp: specify what to do for each alu operation.
You can create/edit these codes for your own convenience.
Other files might also interest you, but we will not go through all of them here.
Feel free to modify any codes as long as they work.
Notice: you need to use state.cycle count++; in core.cpp when needed.
Notice2: If you want to use v1,v2... as the vector register, you can modify
parse reg from string() in instruction.cpp.
Notice3: You might want to check dt.num rt, dt.num rd, dt.num rs for specific
register indexing.
Notice4: The largest vector register length is **. Load instruction will have a
memory latency of **. Besides, the cycles for multiplication is 4. (This means that,
to load a vector of length 10, the total cycles will be 1 + 1 + ** + 10 + 1 + 1 = 46)
7 Grading Criteria
The maximum score you can get for this lab is 100 points. We will first exam ine the correctness of your outputs to test cases. Since hard-coding each opera tion is fairly easy in C++, we will check the execution information, such as the
number of cycles, and content in memories/registers. Using of ChatGPT to im prove writing/generate codes/provide ideas is allowed and highly-recommended
as ChatGPT has become one of the best productivity tools.
Conducting ”higher-level” reduction or finishing the task with less number of cycles
will be granted with extra credit.
You are also required to compose a report, where you should show the results
of your test case executions. Besides you also need to show the total number of
cycles and explain where those cycles come from. (few sentences, no need to be
super specific.)
The deadline of this project is 23:59, Tuesday, 2024/11/19. For each day after
the deadline, 10 points will be deducted from your final score up to 30 points, after
which you will get 0 points.
Besides, if anyone is interested in developing with QT, you are more than welcome
to implement GUI support for RVV instruction. If done properly, you will earn extra
credits, and might contribute to future contents of this class.
Feel free to ask questions if you find anything confusing.
5
8 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 documented and included. Finally, you are
also required to include a report containing the results of your test case execution.
6

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




 

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

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    欧美精品电影在线| 亚洲色欲综合一区二区三区| 欧美在线观看网址综合| 日本精品久久久久久久久久| 欧美乱人伦中文字幕在线| 国产精品伊人日日| 亚洲一区二区三区午夜| 日韩免费在线观看视频| 欧洲成人一区二区| 欧美精品一区二区三区国产精品| 欧美精品一区二区三区在线四季| 中文精品无码中文字幕无码专区| 国产精品视频二| 国产精品视频一区二区高潮 | 欧美激情xxxxx| 一区精品视频| 日日碰狠狠躁久久躁婷婷| 亚洲 欧美 日韩 国产综合 在线| 亚洲v国产v| 日本午夜在线亚洲.国产| 日韩av第一页| 日韩伦理一区二区三区av在线| 日本www在线播放| 亚洲爆乳无码专区| 日韩精品在线观看av| 欧美日韩国产综合视频在线| 欧美乱偷一区二区三区在线| 国模私拍一区二区三区| 国产欧美日韩伦理| 99三级在线| 日韩天堂在线视频| 国产精品第2页| 亚洲综合中文字幕在线观看| 亚洲第一综合| 男女猛烈激情xx00免费视频| 欧美韩国日本在线| 国产乱码精品一区二区三区中文| 久久久天堂国产精品女人 | 国产精品亚洲网站| 久久免费观看视频| 国产精品久久久久久久久影视| 久久亚洲欧美日韩精品专区| 亚洲一区二区三区视频播放| 欧美一区在线直播| 国产日韩精品在线| 久久久伊人欧美| 国产精品美女久久久久av福利 | 亚洲一二区在线| 日韩久久精品一区二区三区| 日本成人黄色免费看| 国产裸体舞一区二区三区| 久久久久久伊人| 亚洲在线第一页| 国产在线精品一区二区三区| 久久精品日韩| 欧美精品videofree1080p| 精品久久久久久亚洲| 欧美一级在线播放| 国产人妻互换一区二区| 久久手机免费视频| 欧美日韩天天操| 131美女爱做视频| 欧美激情视频三区| 人人妻人人做人人爽| 久久这里精品国产99丫e6| 中文字幕免费在线不卡| 黄色片视频在线免费观看| 国产成人在线视频| 日本一区二区三区四区五区六区 | 男人舔女人下面高潮视频| 国产第一区电影| 欧美一级片在线播放| 久久男人的天堂| 国产精品久久久久久av福利软件| 欧美自拍大量在线观看| 久久久久久久97| 欧美婷婷久久| 国产精品久久不能| 国产日韩欧美二区| 久久国产色av| 国产精品一区二区三区久久久| 欧美精品少妇videofree| 国产欧美日韩综合精品| 久久6精品影院| www.com毛片| 日本高清视频免费在线观看| 日韩专区在线播放| 好吊色欧美一区二区三区四区| 精品卡一卡二| 91久久精品一区二区别| 日本韩国在线不卡| 久久亚洲成人精品| 久久资源av| 免费高清一区二区三区| 伊人久久在线观看| 精品国产一区av| 99视频精品全部免费看| 欧洲日韩成人av| 另类天堂视频在线观看| 97色在线观看免费视频| 欧美国产激情视频| 亚洲精品免费av| 国产精品美女av| 国产成人av一区二区三区| 欧美日韩dvd| 91蜜桃网站免费观看| 肉大捧一出免费观看网站在线播放 | 久久久亚洲精选| 91免费的视频在线播放| 成人乱人伦精品视频在线观看| 欧美一级二级三级九九九| 欧洲亚洲免费视频| 日本久久中文字幕| 日本在线高清视频一区| 日本视频精品一区| 日韩人妻无码精品久久久不卡 | 色综合久久久888| 久久av红桃一区二区小说| 国产精品久久久久久久久电影网| 久色视频在线播放| 久久人妻精品白浆国产| 久久av一区二区三区亚洲| 久久国产精品网| 久久久精品免费| 国产精品久久久久久中文字| 国产精品国三级国产av| 最新国产精品久久| 午夜精品美女久久久久av福利| 午夜精品久久久久久久99热浪潮| 日本一区二区高清视频| 欧洲久久久久久| 国产私拍一区| 国产不卡在线观看| 国产精品偷伦视频免费观看国产| 久久手机精品视频| 亚洲最大福利视频网| 日韩精品视频一区二区在线观看| 欧美在线视频网| 国产精品一区二区性色av| 国产大片精品免费永久看nba| 国产精品免费在线| 亚洲av综合色区| 国产一区二区三区色淫影院| 99视频精品免费| 国产精品久久久久久影视| 亚洲精品一区二区毛豆| 欧美有码在线观看| 成人91免费视频| 国产精品日韩在线观看| 毛片精品免费在线观看| 日韩欧美在线免费观看视频| 国产一区二区黄色| 日日骚久久av| 少妇免费毛片久久久久久久久| 国产一区二区精品免费| 久久视频在线免费观看| 欧美一级淫片播放口| 成人av一级片| 九九综合九九综合| 欧美成ee人免费视频| 色琪琪综合男人的天堂aⅴ视频| 亚洲蜜桃av| 成人av播放| 亚洲欧美日韩精品综合在线观看| 欧美尤物巨大精品爽| 国产成人综合亚洲| 日韩a在线播放| 久久久久久久久久久免费精品| 亚洲一区二区三区免费看| 丰满爆乳一区二区三区| 亚洲午夜精品一区二区三区| av网址在线观看免费| 一本大道熟女人妻中文字幕在线 | 国产精品 欧美在线| 一区二区在线观| 国产裸体免费无遮挡| 在线一区日本视频| 91精品国产综合久久久久久久久| 亚洲一区二区三区免费看| 97国产精品久久| 日韩欧美亚洲区| 国产精品久久久久久久久久ktv | 国产一区二区三区色淫影院| 欧美精品一二区| www.国产二区| 春日野结衣av| 日韩在线视频播放| 黄色网在线视频| 亚洲欧美在线网| 国产av人人夜夜澡人人爽麻豆| 日韩免费av片在线观看| 国产精品三级在线| 国产日韩亚洲欧美| 亚洲永久在线观看| 北条麻妃99精品青青久久| 精品一区国产| 永久免费看av| 色偷偷噜噜噜亚洲男人| 国产日韩欧美中文| 日本精品一区二区三区在线播放视频 |