-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chipathon2024 SystemsGenesys #348
base: main
Are you sure you want to change the base?
Chipathon2024 SystemsGenesys #348
Conversation
Initial code upload for divide-by-two circuit |
can you please rename the PR and provide a description of the circuit along with the python code. Follow the PR guidelines as mentioned in the doc. |
Changes done. Can you point to the document please? |
here is the link to the doc |
Hello @Lefteris-B thank you for the PR. Can you confirm that the design is passing DRC/LVS? Also, could you please include the design in an independent python file. You can still import and use the design in your notebook. For example, you can create a new file called |
I will work on it this weekend. Thank you. |
We separated the notebook functionality into separate files. Also fixed the collab file. Looking into DRC, LVS |
from glayout.flow.routing.straight_route import straight_route | ||
from glayout.flow.routing.c_route import c_route | ||
|
||
def create_nmos_latch_layout(pdk): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be good to generate the spice netlist for this. Refer to
OpenFASOC/openfasoc/generators/glayout/glayout/flow/blocks/composite/opamp/opamp.py
Line 26 in e7f4611
def opamp_output_stage_netlist(pdk: MappedPDK, output_amp_fet_ref: ComponentReference, biasParams: list) -> Netlist: |
from latch_design import create_nmos_latch_layout | ||
|
||
def create_divide_by_two_circuit(pdk): | ||
divider = Component("divide_by_two") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can generate the spice netlist for this once the latch netlist is generated. Refer to
OpenFASOC/openfasoc/generators/glayout/glayout/flow/blocks/composite/opamp/opamp.py
Line 26 in e7f4611
def opamp_output_stage_netlist(pdk: MappedPDK, output_amp_fet_ref: ComponentReference, biasParams: list) -> Netlist: |
No description provided.