hdl_rosetta_stone VS Experiments

Compare hdl_rosetta_stone vs Experiments and see what are their differences.

hdl_rosetta_stone

writing up a few examples using different languages and tools, mostly for personal learning. (by TripRichert)

Experiments

Assorted experiments and proof-of-concept code (by ooterness)
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
hdl_rosetta_stone Experiments
4 1
4 0
- -
5.7 4.1
5 days ago over 2 years ago
Verilog Rust
MIT License BSD 3-clause "New" or "Revised" 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.

hdl_rosetta_stone

Posts with mentions or reviews of hdl_rosetta_stone. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-25.
  • Inferred BRAM based FIFO with mismatched input and output data widths
    2 projects | /r/FPGA | 25 Apr 2022
  • Vector-packing algorithm
    2 projects | /r/FPGA | 23 Oct 2021
    I would write a module that held back the last element in a stream until 8 slots were passed, then let it pass through with a tlast signal. Something like this https://github.com/TripRichert/hdl_rosetta_stone/blob/main/verilog/hdl/axistream_add_tlast.v command the tlast every 8 elements, and don't raise tvalid on your inactive element inputs.
  • Gearbox FIFO implementation
    1 project | /r/FPGA | 17 Oct 2021
    https://github.com/TripRichert/hdl_rosetta_stone/blob/main/verilog/hdl/axistream_unpack.v https://github.com/TripRichert/hdl_rosetta_stone/blob/main/verilog/hdl/axistream_unpack.v (where unpack's bitwidth is 2 and NUM_PACK is 32, and pack's bitwidth is 2 and NUM_PACK is 33).
  • Data flow into a top module
    1 project | /r/FPGA | 16 Sep 2021

Experiments

Posts with mentions or reviews of Experiments. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-10-23.
  • Vector-packing algorithm
    2 projects | /r/FPGA | 23 Oct 2021
    I put together a tool to evaluate different sorting networks and came to the same conclusion. There's a few different variants of the bitonic sort, but unfortunately nothing I've tried preserves the original order.