chipsalliance / silicon-notebooks

Apache License 2.0
161 stars 28 forks source link

how to run the copy codes in same colab situation #65

Closed nicedayd closed 1 year ago

nicedayd commented 1 year ago

Hello, I am studying how to use Silicon with Google. Could you share your experience how to run the copy codes in same colab situation if I want to lightly changed the codes for testing ? Thanks.

proppy commented 1 year ago

You should be able to save your modify the colab directory on colab.research.google.com and then save the result to your own github account or on google drive, see: https://colab.sandbox.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb

nicedayd commented 1 year ago

Hi Proppy, Thank you for response! I cannot find the initial raw code directly from the "digital-inverter-openlane-gf180mcu.ipynb". For example, in the Write verilog function, how can I change the detail wire in/wire out/ die parameter/ layout parameter in silicon-notebooks. In following write verilog content, how can I re-write the detail inverter code?

module inverter(input wire in, output wire out); assign out = !in; endmodule