pulp-platform / pulp_cluster

The multi-core cluster of a PULP system.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PULP Cluster

pulp_cluster schematic

The pulp_cluster repository contains the structure of the cluster subsystem used in PULP chips. For more details on the internal architecture, see the README.md in the pulp repository.

The doc folder contains the draw.io schematic shown above, as well as the raw source to allow for updates, outlining the most important components in pulp_cluster, as well as the communication interfaces connecting these. While not a complete overview of all signals, this is meant as a slightly more detailed overview that can assist in development. Please be aware that the schematic may not be 100% accurate.

Simulation

It is possible to run benchmarks on the cluster, either within PULP or as a separate IP. For simulation within PULP, you can directly go to the PULP repo and follow the README.

To simulate the cluster on its own, you can perform the following steps:

Warning: requires QuestaSim 2022.3 or newer.

  1. Make sure the PULP RV32 toolchain is in your PATH. Please refer to PULP RISCV GCC toolchain to use a pre-built release. (At IIS, this is set up by the env script in step 4.)

  2. Compile the hw:

    make checkout
    make scripts/compile.tcl
    make build
    
  3. Download the sw stack and bare-metal tests:

    make pulp-runtime
    make regression-tests
    
  4. Source the environment:

    source env/env.sh
    

    (At IIS, this sets up a proper QuestaSim environment, and links the toolchain.)

  5. Run the tests. Choose any test among the parallel_bare_tests and the mchan_tests, move into the related folder and do:

    make clean all run
    

    To use the GUI, add gui=1 to the previous command.

About

The multi-core cluster of a PULP system.

License:Other


Languages

Language:SystemVerilog 94.9%Language:C++ 3.4%Language:Makefile 1.3%Language:Tcl 0.4%Language:Shell 0.0%