Tensor...: Using NNgen to generate circuits.

Clone this repo:

Branches

  1. 738a9bc final gds oasis by Jeff DiCorpo · 1 year, 5 months ago main
  2. 704e402 Update README.md by RR_WM · 1 year, 11 months ago
  3. cbf5de5 Update README.md by RR_WM · 1 year, 11 months ago
  4. 358859f Update README.md by RR_WM · 1 year, 11 months ago
  5. 1e9abeb Add files via upload by RR_WM · 1 year, 11 months ago

Caravel User Project

License UPRJ_CI Caravel Build

Tensor calculation using NNgen

This project uses NNgen https://github.com/NNgen/nngen to generate a simple tensor calculation. Code is as follows

a = ng.placeholder(ng.int8, shape=(1), name=‘a’)

b = ng.placeholder(ng.int8, shape=(1), name=‘b’)

c = ng.add(a, b, dtype=ng.int8, name=‘c’)

rtl = ng.to_verilog([c], ‘Basic’, silent=False)