No description
Find a file
2023-06-29 13:58:22 -04:00
ci exposing GPU clustering information to the S/W stack 2023-06-24 19:17:33 -04:00
docs rtl tree refactoring 2023-05-28 22:31:51 -04:00
hw minor updates 2023-06-29 13:58:22 -04:00
kernel minor fixes 2023-06-25 07:54:28 -04:00
miscs llvm-riscv => using llvm-vortex 2023-02-15 00:50:26 -05:00
perf minor update 2023-05-10 17:47:47 -04:00
runtime minor fixes 2023-06-25 07:54:28 -04:00
sim fixed namespace collision with CSRs and DCRs in S/W 2023-06-24 22:13:59 -04:00
tests fixed namespace collision with CSRs and DCRs in S/W 2023-06-24 22:13:59 -04:00
third_party update thirdparty dependencies 2023-06-08 22:53:59 -04:00
.codecov.yml Create .codecov.yml 2020-08-25 07:10:45 -04:00
.gitmodules using ramulator dram simulator 2021-12-06 01:22:45 -05:00
.travis.yml enabling 64-bit ISA with graphics extension 2023-06-23 18:52:54 -04:00
LICENSE Update LICENSE 2021-07-13 18:56:12 -04:00
Makefile Fix ifdef for 32 bit, add make commands for rtl 2023-05-10 22:55:27 -04:00
README.md minor update 2023-05-14 18:05:51 -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

Build Status codecov

Vortex RISC-V GPGPU

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

Specifications

  • Support RISC-V RV32IMAF & RV64IMAFD ISAs
  • Performance:
    • 1024 total threads running at 250 MHz
    • 128 Gflops of compute bandwidth
    • 16 GB/s of memory bandwidth
  • Scalability: up to 64 cores with optional L2 and L3 caches
  • Software: OpenCL 1.2 Support
  • Supported FPGAs:
    • Intel Arria 10
    • Intel Stratix 10

Directory structure

  • doc: Documentation.
  • hw: Hardware sources.
  • driver: Host drivers repository.
  • runtime: Kernel Runtime software.
  • sim: Simulators repository.
  • tests: Tests repository.
  • ci: Continuous integration scripts.
  • miscs: Miscellaneous resources.

Build Instructions

Supported OS Platforms

  • Ubuntu 18.04
  • Centos 7

Toolchain Dependencies

Install development tools

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

Install Vortex codebase

$ git clone --recursive https://github.com/vortexgpgpu/vortex-dev.git
$ cd Vortex

Install prebuilt toolchain

$ ./ci/toolchain_install.sh -all

By default, the toolchain will install to /opt folder. You can install the toolchain to a different directory by overiding DESTDIR.

$ DESTDIR=$TOOLDIR ./ci/toolchain_install.sh -all
$ export VORTEX_HOME=$TOOLDIR/vortex-gfx
$ export LLVM_VORTEX=$TOOLDIR/llvm-vortex
$ export RISCV_TOOLCHAIN_PATH=$TOOLDIR/riscv64-gnu-toolchain
$ export VERILATOR_ROOT=$TOOLDIR/verilator
$ export PATH=$VERILATOR_ROOT/bin:$PATH 

Build Vortex sources

$ make -s

Quick demo running vecadd OpenCL kernel on 2 cores

$ ./ci/blackbox.sh --driver=rtlsim --cores=2 --app=vecadd