vroom VS picorv32

Compare vroom vs picorv32 and see what are their differences.

picorv32

PicoRV32 - A Size-Optimized RISC-V CPU (by YosysHQ)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
vroom picorv32
17 16
447 2,770
- 1.5%
5.0 5.2
9 months ago about 1 month ago
Verilog Verilog
GNU General Public License v3.0 only ISC License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vroom

Posts with mentions or reviews of vroom. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-15.
  • How can I leverage RISC-V in my final year Electrical & Electronics Engineering project? Seeking advice and project ideas.
    2 projects | /r/RISCV | 15 Nov 2023
    Maybe implement a big feature for a open source design? like vroom or xiangshan.
  • In your opinion, what is the most advanced open source softcore processor?
    2 projects | /r/FPGA | 28 May 2023
    The two most micro architecturally advanced cores that I know of are BOOM, an out of order RV64GC core with all the features you expect plus sort of weird fancy things like short forward branch predication, and VROOM, another out of order RV64GC core with things like uop fusion and a trace cache.
  • ARM or x86? ISA Doesn’t Matter
    4 projects | news.ycombinator.com | 14 May 2023
    I had VROOM! in mind (https://github.com/MoonbaseOtago/vroom) because I remembered it aims for 4 IPC avg with a width of 8. Though looking again it's 8 compressed 16 bit instructions or 4 uncompressed 32 bit instruction.

    So you could argue a real mix of instructions is not going to be all 16 bit but some 16 and some 32, so the 8 is rarely achieved in practice, and also the block diagram only shows 4 decode blocks. But it can in fact peak at 8 instructions decoded per clock, so I think that qualifies. (You could even argue it's especially impressive, since RISC-V technically qualifies as variable-length encoding like x86, it's just that only 16/32 instructions are really used at the moment)

  • How to build a Startup use open source chips
    4 projects | /r/RISCV | 4 May 2023
    If you are interested in high performance look into vroom , c910 and xianghan, maybe you could adopt one of them.
  • ARM versus RISC-V
    2 projects | /r/RISCV | 9 Mar 2023
    On top of what others mentioned (Red Hat) , it is also possible to go with the mysql/mariadb model of dual licensing, you can have a copyleft license where you must contribute back changes, but also allow selling an proprietary license if they want to enhance it but not share the improvements (like amazon or Ampere Computing that enhance ARM designs and sells it for servers), there is already a RISK-V implementation that aims to do that (vroom). another option is a non profit foundation that companies contribute to because they use the project and want it to be better (like the linux foundation) , risc-v has similar nonprofits like the chips alliance (which develops the Rocket-Chip ) or the OpenHW Group (which develops CVA6), there is also lowrisc which develops ibex (but as far as i can tell isn't governed by the contributing companies like the other non profits).
  • When will there be a 16-32 core RISC V high end desktop processor and motherboard ?
    1 project | /r/RISCV | 25 Feb 2023
    You want a very optimistic answer? someone is working on open source server core, It is already announced and i have been told it is somewhere around four years for a chip to ship after announcement so i would say 4 years from now.
  • Open-source RISC-V CPU projects for contribution
    8 projects | /r/RISCV | 28 Jan 2023
  • What caused/started the "CISC vs RISC" in the 1980s?
    3 projects | /r/hardware | 28 Nov 2022
    At the moment the Apple M1/M2 are the king of wide decode. Within a couple of years you will see equally wide decode and execute of RISC-V from companies such as Rivos, or indeed open source and GPL'd projects such as VROOM! (https://github.com/MoonbaseOtago/vroom)
  • ARM to prohibit proximity of CPU w 3rd-party modules in one chip
    1 project | news.ycombinator.com | 1 Nov 2022
    > True performance RISCV designs are going to be people's money maker and never open sourced.

    That turns out not to be the case.

    Alibaba's C910 core -- roughly comparable to the ARM A72 cores (at the same MHz) in the Pi 4 -- is open sourced. It is being used, at 2.5 GHz, in the upcoming "Roma" laptop. That is rather expensive (for now), but I suspect the same TH1520 SoC will quickly find its way onto cheaper SBCs.

    There is a very wide OoO GPL'd RISC-V core that is under development. It is aiming for eventual Apple M1 level performance. The current iteration is falling short of that at the moment, but it's already comparable to the ARM A76 in the latest RK3588 SBCs: https://github.com/MoonbaseOtago/vroom

  • I am bored because I am not capable to work and want to learn something useful/interesting
    2 projects | /r/RISCV | 21 Sep 2022
    Then you can help open source hardware designs like xiangshan or vroom.

picorv32

Posts with mentions or reviews of picorv32. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-30.
  • RISC-V support in Android just got a big setback
    4 projects | news.ycombinator.com | 30 Apr 2024
    > Right now, most devices on the market do not support the C extension

    This is not true and easily verifiable.

    The C extension is defacto required, the only cores that don't support it are special purpose soft cores.

    C extension in the smallest IP available core https://github.com/olofk/serv?tab=readme-ov-file

    Supports M and C extensions https://github.com/YosysHQ/picorv32

    Another sized optimized core with C extension support https://github.com/lowrisc/ibex

    C extension in the 10 cent microcontroller https://www.wch-ic.com/products/CH32V003.html

    This one should get your goat, it implements as much as it can using only compressed instructions https://github.com/gsmecher/minimax

  • SPI PROTOCOL in FPGA
    1 project | /r/FPGA | 14 May 2023
    In contrast to most people here saying you NEED to spend money. I disagree with that. You can implement and simulate a SPI master/slave fully on your computer, no FPGA or other hardware required. There are simulation models for SPI peripherals you could use. For example: https://github.com/YosysHQ/picorv32/blob/master/picosoc/spiflash.v
  • How many gates does a decent risc-v implementation take?
    2 projects | /r/RISCV | 16 Feb 2023
    The Pico RV32 is pretty small, and can go as low as about 750 LUTs, with most features elided. I don't know how Xilinix LUTs translate to Lattice though.
  • Open-source RISC-V CPU projects for contribution
    8 projects | /r/RISCV | 28 Jan 2023
    Picorv32: https://github.com/YosysHQ/picorv32
  • We ran a Unix-like OS (Xv6) on our home-built CPU with our home-built C compiler
    3 projects | news.ycombinator.com | 27 Nov 2022
    There are loads of free RISC-V cores that you can read the source of and run on cheap FPGAs. Take a look at PicoRV32: https://github.com/YosysHQ/picorv32
  • SUGGEST AN OPEN SOURCE RISC-V CORE DESIGNED IN VERILOG
    3 projects | /r/RISCV | 26 Nov 2022
    picorv32 is written in Verilog.
  • Minimax: a Compressed-First, Microcoded RISC-V CPU
    4 projects | /r/FPGA | 26 Oct 2022
    In short: it works, though the implementation lacks the crystal clarity of FemtoRV32 and PicoRV32. The core is larger than SERV but has higher IPC and (very arguably) a more conventional implementation. The compressed instruction set is easier to expand into regular RV32I instructions than it is to execute directly.
  • Apple to Move a Part of Its Embedded Cores to RISC-V
    4 projects | news.ycombinator.com | 16 Sep 2022
    That is, reducing the number of LUT required to implement a CPU of a given ISA.

    A basic RV32 CPU is down to 500-700 LUT.

        https://github.com/YosysHQ/picorv32
  • Designing a reasonable memory interface
    1 project | /r/FPGA | 8 Aug 2022
    I've bought a cheap FPGA board (Sipeed Tang Nano 9K) because I want to implement a little 8 or 16-bit CPU. The FPGA has plenty of BRAM for such a little CPU, so I wouldn't even need to implement an SPI controller initially, but I want to implement a von Neumann architecture, and was wondering if the only way of doing so using single port (or semi dual port) RAM would be to use 2 cycles or more for memory transfer operations (one for loading the instruction, one for executing the actual memory transfer), or if there was any technique that could be used to avoid this without having to implement instruction-level parallelism. Even if not, references to understandable code implementing a simple memory interface would be appreciated. I looked at PicoRV32 but couldn't really understand its inner workings.
  • Risc-v rv32i softcore processor for Zybo-z7-10
    4 projects | /r/FPGA | 14 Apr 2022
    Have you looked at PicoRV32? https://github.com/YosysHQ/picorv32

What are some alternatives?

When comparing vroom and picorv32 you can also consider the following projects:

riscv-v-spec - Working draft of the proposed RISC-V V vector extension

openlane - OpenLane is an automated RTL to GDSII flow based on several components including OpenROAD, Yosys, Magic, Netgen and custom methodology scripts for design exploration and optimization.

XiangShan - Open-source high-performance RISC-V processor

neorv32-setups - 📁 NEORV32 projects and exemplary setups for various FPGAs, boards and (open-source) toolchains.

riscv-isa-manual - RISC-V Instruction Set Manual

rocket-chip - Rocket Chip Generator

openc910 - OpenXuantie - OpenC910 Core

skywater-pdk - Open source process design kit for usage with SkyWater Technology Foundry's 130nm node.

hn-search - Hacker News Search

wd65c02 - Cycle accurate FPGA implementation of various 6502 CPU variants

openc906 - OpenXuantie - OpenC906 Core

Projects - Ted Fried's MicroCore Labs Projects which include microsequencer-based FPGA cores and emulators for the 8088, 8086, 8051, 6502, 68000, Z80, Risc-V, and also Typewriter and EPROM Emulator projects. MCL51, MCL64, MCL65, MCL65+, MCL68, MCL86, MCL86+, MCL86jr, MCLR5, MCLZ8