final gds oasis
97 files changed
tree: 161d760c8e2df323ec67f88016a9afbfc62f2389
  1. def/
  2. docs/
  3. gds/
  4. lef/
  5. mag/
  6. maglef/
  7. mpw_precheck/
  8. openlane/
  9. sdc/
  10. sdf/
  11. signoff/
  12. spef/
  13. spi/
  14. tapeout/
  15. verilog/
  16. LICENSE
  17. Makefile
  18. README.md
README.md

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)