No description
Find a file
2020-08-11 17:13:28 -04:00
benchmarks updated Makefile of riscv_tests/isa 2020-08-11 13:55:36 -04:00
docs fpga_synthesis merge 2020-06-23 12:41:26 -07:00
driver dogfood added to Makefile 2020-08-11 17:13:28 -04:00
evaluation refactoring fixes 2020-04-14 19:39:59 -04:00
hw Merge branch 'master' of https://github.gatech.edu/casl/Vortex 2020-08-11 13:56:16 -04:00
miscs Moved runtime/tests/vector_test directory to miscs/rvvector 2020-07-15 14:26:22 -04:00
runtime Makefile for /runtime/tests/ and /driver/tests/ 2020-08-04 18:24:32 -04:00
simX simX cleanup 2020-06-30 20:51:09 -07:00
.gitmodules add fpnew 2020-07-23 06:20:43 -04:00
LICENSE Create LICENSE 2020-01-11 11:00:37 -05:00
Makefile lkg build with pipeline + FPU fixes 2020-07-31 09:29:44 -04:00
README.md update README 2020-08-05 19:28:17 -04:00
RELEASE LKG FPGA build - Passed basic, demo, vecadd kernels 2020-07-01 09:39:53 -07:00
TODO TODO update 2019-11-07 20:52:36 -05:00

Vortex RISC-V GPGPU

Vortex is a full-system RISCV-based GPGPU processor.

Specifications

  • Support RISC-V RV32I ISA
  • Fully scalable: 1 to 16 cores with optional L2 and L3 caches
  • OpenCL 1.2 Support
  • FPGA target: Intel Arria 10 @ 200 MHz peak Freq

Directory structure

  • benchmarks: OpenCL and RISC-V benchmarks

  • docs: documentation.

  • hw: hardware sources.

  • driver: driver software.

  • runtime: runtime software for kernels.

  • simX: Vortex cycle-approximate simulator.

  • evaluation: synthesis and performance data.

Basic Installation

Install development tools

$ sudo apt-get install build-essential
$ sudo apt-get install git

Install gnu-riscv-tools

$ export RISCV_TOOLCHAIN_PATH=/opt/riscv-gnu-toolchain

$ sudo apt-get -y install \
    binutils build-essential libtool texinfo \
    gzip zip unzip patchutils curl git \
    make cmake ninja-build automake bison flex gperf \
    grep sed gawk python bc \
    zlib1g-dev libexpat1-dev libmpc-dev \
    libglib2.0-dev libfdt-dev libpixman-1-dev 
$ git clone https://github.com/riscv/riscv-gnu-toolchain
$ cd riscv-gnu-toolchain
$ git submodule update --init --recursive
$ mkdir build
$ cd build    
$ ../configure --prefix=$RISCV_TOOLCHAIN_PATH --with-arch=rv32im --with-abi=ilp32
$ make -j`nproc`  
$ make -j`nproc` build-qemu

Install Verilator

You need into build the latest version using the instructions on their website
$ https://www.veripool.org/projects/verilator/wiki/Installing 

Install Vortex

$ git clone --recursive https://github.gatech.edu/casl/Vortex.git
$ cd Vortex
$ make

Quick Test running SGEMM kernel

$ cd /Vortex/benchmarks/opencl/vecadd
$ make
$ make run-rtlsim