CSC3050 Project 3: RISC-V Simulator with RVV
1 Background
RISC-V, an open standard instruction set architecture (ISA), has rapidly become apivotal force in academic research and industrial development due to its flexibilityand open-source nature. Unlike proprietary ISAs, RISC-V offers the freedom fordevelopers to customize and extend the architecture, making it an ideal platformfor innovation in research, education, and the design of specialized hardware. Oneof its most impactful extensions is the RISC-V Vector Extension (RVV), whichintroducesefficient vector processing capabilities—a cornerstone of modern highperformance computing. This is especially critical for applications like machinelearning, cryptography, and scientific simulations, where parallel data processing iessentialfor 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 fasterthan conducting element-wise operations.Start early, this project can be time-consuming if you are not familiar withsimulators.2 QTRVSim QTRVSim is a RISC-V CPU simulator for education, where you can try its onlineversion on this link. Just in case you want to try different instructions, you can referto this page: RISC-V Instruction Set Specifications. A helpful video about usingTRVSim can be found on YoutubeAfter familiarizing yourself with the QtRVSim manual, you can begin planning howto integrate RVV instructions into the existing implementation. The simulator’ssource code, written in C++ and including both the core simulation functions andgraphical user interfaces (GUIs), can be found in the repository at this link. To testyourmodifications, QtRVSim offers two methods for simulating assemblycode: GUIor 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 whenusing command-line prompts. Another objective in this project is to save the numberof cycles; the smaller the number you get, thebetter the score you get.12.1 How to run We give the example of running QTRVSim on Ubuntu with the terminal. You canfollow these steps:
- We assume you already have the necessary packages for compiling cpp. Ifnot, you can easily find tutorial for them on the internet.
- 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 areinstalling QT6, not QT5.
- Download QTRVSim from the given repository.
- Make a new directory for building files (mkdir build; cd build)
- cmake -DCMAKE BUILD TYPE=Release /path/to/qtrvsim
- make -j X, where X is the number of threads you want to use
- If everything goes correctly, you can use ./target/qtrvsim cli –asm XXXXX.Sto run your .S file.
- 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 32):
- vsetvl rd, rs1, rs2: sets the length register vl to rs1 and rd, also sets theregister holding the type of vector to rs2 (8/16/32).
- vadd.vv vd, vs2, vs1: adds two vectors vs2 and vs1, and stores the resultin vd
- vadd.vx vd, vs2, rs1: adds rs1 to each element of vector vs2, and storesthe result in vd
- vadd.vi vd, vs2, imm: adds the scalar value imm to each element of vectorvs2, and stores the result in vd
- vmul.vv vd, vs2, vs1: conducts dot production on two vectors vs2 and vs1,and stores the result in vd
- vlw.v vd, (rs1): loads elements stored starting at rs1 into vector vd. Thelength to load is dependent on the length stored at vl and the unit lengthpecified earlier.
- 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 lengthspecified earlier.2Figure 1: Matrix stored as vectorThe whole point of this project is that, through the implementation, you willunderstand why are vector operations is much faster than manipulate eachelementindividually. For example, writing 100 elements into memory will require 100instructions can be found at this manual. Reminder: Do not forget to update vl when switching to operate on vectors with differentengths.4 Matrix Multiplication After implementing and testing the aforementioned functionalities, you are requiredto write a .S file that conduct matrix to matrix multiplication.Ci,j = X Ai,kBk,j The actual matrix will be stored as a vector in memory, as shown in Figure 1. Inorder to conductvector multiplication, the size of the matrix n × m will be given.We require you to generate two random matrices with sizes of 20 × 46 and46 × 50 where elements can be of your own choice.5 Tricks There are several tricks you can apply to reduce cycle counts.
- Reduction (required): This is similar to calculate the summation of avector, but more efficiently. The basic requirement is that you conduct thissummation on each element one-by-one, which leads to excessive cycles.Another approach is to do binary split, i.e. repeatedly decompose the a vectorof size n into 2 vectors of size n//2, and then conduct vadd. There are alsoother trick for conducting reduction, and you can explore any of them.3Possible reduction:(a) scalar loop(b) vector shift(c) reduction instruction(d) ...Chaining (Extracredit):When conducting vector operations, it is not necessary to wait for the entire instruction to complete. As shown in Figure 2, itis possible to conduct VADD on the first element, right after obtaining thefirst element ofVMUL. A much better illustration can be found at Prof.Hsu’sslides at this link.Figure 2: chaining6 Instruction on Implementation The code involved in QTRVSim is quite complicated. Luckily, you only need tofocus on few script files.
- src/machine/instruction.cpp: Edit this file to add new instructions. Theboxed fields are:
- instruction name
- instruction enum type (you can edit this by yourself; no need to followthe example)
- input types (you can go through instruction.cpp to see what char is forwhat type)
- machine code (hexadecimal)
- mask for effective bits for instruction (hexadecimal)
- customize flags (you can edit this by yourself; no need to follow theexample)
- 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 convenience.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.: 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 modifyparse reg from string() in instruction.cpp.Notice3: You might want to check dt.num rt, dt.num rd, dt.num rs for specificregister indexing.Notice4: The largest vector register length is 32. Load instruction will have amemory latency of 32. Besides, the cycles for multiplication is 4. (This means that,to load a vector of length 10, the totalcycles will be 1 + 1 + 32 + 10 + 1 + 1 = 46)
7 Grading Criteria
The maximum score you can get for this lab is 100 points. We will first examine the correctness of your outputs to test cases. Since hard-coding each operation is fairlyeasy in C++, we will check the execution information, such as thenumber of cycles, and content in memories/registers. Using of ChatGPT to improve 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 代写CSC3050 RISC-V Simulator with RVV number of cycleswill be granted with extracredit. are also required to compose a report, where you should show the resultsof your test case executions. Besides you also need to show the total number of
and explain where those cycles come from. (few sentences, no need to besuper specific.)The deadline of this project is 23:59, Tuesday, 2024/11/19. For each day afterthe deadline, 10 points will be deducted from your final score up to 30 points, after you will get 0 points.Besides, if anyone is interested in developing with QT, you are more than welcomeo implement GUI support for RVV instruction. If done properly, you will earn extracredits, and might contribute to future contents of this class.
Feel free to ask questions if you find anything confusing.58 Submission You should make sure your code compiles and runs. Then, it should be compressedinto a .zip file and submitted to BlackBoard. Any necessary instructions tocompile and run your code should also be documented and included. Finally, you arealso required to include a report containing the results of your test case execution.
标签:CSC3050,instruction,RISC,will,vector,RVV,vd From: https://www.cnblogs.com/comp9021T2/p/18545751