[SOLVED] C Java javascript compiler operating system software Project 1

$25

File Name: C_Java_javascript_compiler_operating_system_software_Project_1.zip
File Size: 584.04 KB

5/5 - (1 vote)

Project 1
About the RISC-V ISA
RISC-V (pronounced risk-five) is an open, free ISA enabling a new era of processor innovation through open standard collaboration. Born in academia and research, RISC-V ISA delivers a new level of free, extensible software and hardware freedom on architecture, paving the way for the next 50 years of computing design and innovation.
The finaluser-level ISA specification, adraft compressed ISA specification, adraft privileged ISA specification, and a suite ofRISC-V software toolsincluding aGNU/GCC software tool chain,GNU/GDB debugger, anLLVM compiler, aSpike ISA simulator,QEMU, and averification suiteis available for download now.

To sample the architecture without installing anything, try outANGEL, a JavaScript ISA simulator that boots an interactive session ofriscv-linuxon a simulated RISC-V machine in your browser.

Key Features of the RISC-V ISA:
Delivers a new level of software and hardware freedom on architecture in an open extensible way.
Open ISA delivers easier support from a broad range of operating systems, software vendors and tool developers.
The open source of hardware, RISC-V does not rely on a single supplier offers multiple suppliers, therefore, supports unlimited potential for future growth.
No other ISA is architected like the RISC-V ISA, allowing for user extensibility of the architecture without breaking existing extensions or incurring software fragmentation

RISC-V Tools
This repository houses a set of RISC-V simulators, compilers, and other tools, including the following projects:
Spike, the ISA simulator
riscv-tests, a battery of ISA-level tests
riscv-opcodes, the enumeration of all RISC-V opcodes executable by the simulator
riscv-pk, which containsbbl, a boot loader for Linux and similar OS kernels, andpk, a proxy kernel that services system calls for a target-machine application by forwarding them to the host machine
riscv-fesvr, the host side of a simulation tether that services system calls on behalf of a target machine
Quickstart
$ git clone https://github.com/riscv/riscv-tools.git
$ cd riscv-tools
$ git submodule update init recursive
$ export RISCV=/path/to/install/riscv/toolchain
$ ./build.sh

Ubuntu packages needed:
$ sudo apt-get install autoconf automake autotools-dev curl libmpc-dev libmpfr-dev libgmp-dev libusb-1.0-0-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev device-tree-compiler pkg-config libexpat-dev

Fedora packages needed:
$ sudo dnf install autoconf automake @development-tools curl dtc libmpc-devel mpfr-devel gmp-devel libusb-devel gawk gcc-c++ bison flex texinfo gperf libtool patchutils bc zlib-devel expat-devel

Note:This requires a compiler with C++11 support (e.g. GCC >= 4.8). To use a compiler different than the default, use:
$ CC=gcc-5 CXX=g++-5 ./build.sh
Note for OS X:We recommend usingHomebrewto install the dependencies (libusb dtc gawk gnu-sed gmp mpfr libmpc isl wget automake md5sha1sum) or even to install the toolsdirectly. This repo will build with Apples command-line developer tools (clang) in addition to gcc.
Spike RISC-V ISA Simulator
Spike, the RISC-V ISA Simulator, implements a functional model of one or more RISC-V processors.
Spike is named after the golden spike used to celebrate the completion of the US transcontinental railway.
Compiling and Running a Simple C Program
Write a short C program and name it hello.c.
#include
int main(int argc, char *argv[])
{
printf(Hello RISC-V
);
return 0;
}

Then, compile it into a RISC-V ELF binary named hello:
$ riscv64-unknown-elf-gcc -o hello hello.c
Now you can simulate the program atop the proxy kernel:
$ spike pk hello
Simulating a New Instruction
Adding an instruction to the simulator requires two steps:
Describe the instructions functional behavior in the file riscv/insns/ .h. Examine other instructions in that directory as a starting point.
Add the opcode and opcode mask to riscv/opcodes.h. Alternatively, add it to the riscv-opcodes package, and it will do so for you:
$ cd ../riscv-opcodes
$ vi opcodes // add a line for the new instruction
$ make install
Rebuild the simulator.
Task
In this project, we are going to process an image by using risc-v processor. Before that, Id like to introduce some concepts of the image processing. First, I would introduce the concept of convolution. An image can be converted to a matrix as shown in Fig. 1.

Fig. 1 An image is represented by a matrix

A convolutional filter is often used to process an image. The convolutional computing is defined as
(1)
(1)
Eqn. (1) can be illustrated by Fig. 2. The convolutional operation firstly rotates the filter by 180 degrees and then carries out the correlation of the rotated filter matrix with the input matrix.

Fig. 2 Illustration of the convolutional operation

Fig. 3 A sample image

In this project, we will use Fig. 3 as the input image with the size of 20481024. The RGB channels of the image will be convoluted by three filters f1, f2, f3, and f4. Now we will give weights to different channels to see the effect after applying these filters to the image.
-1
-1
-1
-1
9
-1
-1
-1
-1
1
1
1
1
-8
1
1
1
1

1/9
1/9
1/9
1/9
1/9
1/9
1/9
1/9
1/9
1/16
2/16
1/16
2/16
4/16
2/16
1/16
2/16
1/16
Mean Filter Gaussian Filter High-Pass FilterLaplacian Filter

To simplify, we use Eqn. (2) to illustrate the convolutional operations,

where .

Tasks:
Write a program in C to implement the above convolutional operation.
Compile and run the program in both RISCV32 and RISCV64 environments.
Please try different values of k1, k2, and k3. For example, .
Figure out what and how many instructions are used to run the program.
Find out the total execution time of the program.
Please note: the stride of the convolutional operation is 1, and zero padding should be added to the original image.

Evaluation:
Please try your best to optimize your code for both RV32 and RV64. The project will be evaluated and graded based on:
The efficiency of the code. For example, the number of instructions used to run the program, the execution time of the program, etc.
The quality of the code.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] C Java javascript compiler operating system software Project 1
$25