No description
Find a file
2024-05-13 23:57:33 -07:00
ci updated configure script usage 2024-05-13 08:19:37 -07:00
docs updated configure script usage 2024-05-13 08:19:37 -07:00
hw minor update 2024-05-13 06:59:46 -07:00
kernel wspawn fix 2024-05-10 21:42:20 -07:00
miscs minor update 2024-05-13 23:57:33 -07:00
perf/cache enabling Makefile configuration with build folder support 2024-03-30 02:28:39 -07:00
runtime XRT runtime and simulation support for Vortex AFU (incomplete) 2024-05-11 17:43:49 -07:00
sim minor update 2024-05-12 20:21:23 -07:00
tests minor update 2024-05-12 20:21:23 -07:00
third_party minor update 2024-05-09 03:37:03 -07:00
.gitignore enabling Makefile configuration with build folder support 2024-03-30 02:28:39 -07:00
.gitmodules Vortex 2.0 changes: 2023-10-19 20:51:22 -07:00
.travis.yml minor update 2024-05-13 23:57:33 -07:00
config.mk.in updated configure script usage 2024-05-13 08:19:37 -07:00
configure updated configure script usage 2024-05-13 08:19:37 -07:00
LICENSE Vortex 2.0 changes: 2023-10-19 20:51:22 -07:00
Makefile.in minor update 2024-05-03 19:51:09 -07:00
README.md updated configure script usage 2024-05-13 08:19:37 -07:00

Build Status

Vortex GPGPU

Vortex is a full-stack open-source RISC-V GPGPU.

Specifications

  • Support RISC-V RV32IMAF and RV64IMAFD
  • Microarchitecture:
    • configurable number of cores, warps, and threads.
    • configurable number of ALU, FPU, LSU, and SFU units per core.
    • configurable pipeline issue width.
    • optional local memory, L1, L2, and L3 caches.
  • Software:
    • OpenCL 1.2 Support.
  • Supported FPGAs:
    • Altera Arria 10
    • Altera Stratix 10
    • Xilinx Alveo U50, U250, U280
    • Xilinx Versal VCK5000

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

More detailed build instructions can be found here.

Supported OS Platforms

  • Ubuntu 18.04, 20.04
  • Centos 7

Toolchain Dependencies

Install development tools

$ sudo apt-get install build-essential
$ sudo apt-get install binutils
$ sudo apt-get install python
$ sudo apt-get install uuid-dev
$ sudo apt-get install git

Install Vortex codebase

$ git clone --depth=1 --recursive https://github.com/vortexgpgpu/vortex.git
$ cd Vortex

Configure your build folder

# By default, the toolchain default install location is the /opt folder and can be overridden by setting --tooldir.
$ mkdir build
$ cd build
$ ../configure --xlen=32 --tooldir=$HOME/tools

Install prebuilt toolchain

$ ./ci/toolchain_install.sh --all

set environment variables

# should always run before using the toolchain!
$ source ./ci/toolchain_env.sh

Building Vortex

$ make -s

Quick demo running vecadd OpenCL kernel on 2 cores

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