+ Microarchitecture optimizations + 64-bit support + Xilinx FPGA support + LLVM-16 support + Refactoring and quality control fixes minor update minor update minor update minor update minor update minor update cleanup cleanup cache bindings and memory perf refactory minor update minor update hw unit tests fixes minor update minor update minor update minor update minor update minor udpate minor update minor update minor update minor update minor update minor update minor update minor updates minor updates minor update minor update minor update minor update minor update minor update minor updates minor updates minor updates minor updates minor update minor update
31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
# Vortex Documentation
|
|
|
|
## Table of Contents
|
|
|
|
- [Codebase Layout](codebase.md)
|
|
- [Microarchitecture](microarchitecture.md)
|
|
- [Cache Subsystem](cache_subsystem.md)
|
|
- [Software](software.md)
|
|
- [Simulation](simulation.md)
|
|
- [FPGA Setup Guide](fpga_setup.md)
|
|
- [Debugging](debugging.md)
|
|
- [Useful Links](references.md)
|
|
|
|
## Installation
|
|
|
|
- Refer to the build instructions in [README](../README.md).
|
|
|
|
## Quick Start Scenarios
|
|
|
|
Running Vortex simulators with different configurations:
|
|
- Run basic driver test with rtlsim driver and Vortex config of 2 clusters, 2 cores, 2 warps, 4 threads
|
|
|
|
$ ./ci/blackbox.sh --driver=rtlsim --clusters=2 --cores=2 --warps=2 --threads=4 --app=basic
|
|
|
|
- Run demo driver test with opae driver and Vortex config of 1 clusters, 4 cores, 4 warps, 2 threads
|
|
|
|
$ ./ci/blackbox.sh --driver=opae --clusters=1 --cores=4 --warps=4 --threads=2 --app=demo
|
|
|
|
- Run dogfood driver test with simx driver and Vortex config of 4 cluster, 4 cores, 8 warps, 6 threads
|
|
|
|
$ ./ci/blackbox.sh --driver=simx --clusters=4 --cores=4 --warps=8 --threads=6 --app=dogfood |