Install latest/stable of Karuta HLS Compiler

Ubuntu 16.04 or later?

Make sure snap support is enabled in your Desktop store.


Install using the command line

sudo snap install karuta

Don't have snapd? Get set up for snaps.

Channel Version Published

Karuta is a scripting language for FPGA design (so called HLS).

Karuta is an object-oriented scripting language and its compiler to design logic circuits. The main objective of Karuta is to improve the productivity of logic circuit design. This kind of software is usually known as HLS (High Level Synthesis).

Document site: https://karuta.readthedocs.io/en/latest/

Source code: https://github.com/nlsynth/karuta/ (see NEWS file for latest updates)

Twitter: https://twitter.com/karutalang

VSCode extention for Karuta syntax: https://marketplace.visualstudio.com/items?itemName=karuta.karuta

Script in Karuta is like this and can be compiled into a design in Verilog HDL.

 module {
   output led #0

   process main() {
     var b bool = false
     while true {
       wait(1000000)
       led.write(b)
       b = ~b
     }
   }
 }



You can get synthesizable Verilog file led.v by

 $ karuta compile led.karuta

Details for Karuta HLS Compiler

License
  • GPL-3.0+

Last updated
  • 26 June 2021 - latest/stable
  • 26 June 2021 - latest/candidate

Websites

Contact

Share this snap

Generate an embeddable card to be shared on external websites.


Install Karuta HLS Compiler on your Linux distribution

Choose your Linux distribution to get detailed installation instructions. If yours is not shown, get more details on the installing snapd documentation.


Where people are using Karuta HLS Compiler

Users by distribution (log)

Ubuntu 22.04
Ubuntu 20.04
Ubuntu 23.10
Ubuntu 18.04

Is there a problem with Karuta HLS Compiler? Report this app