We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is related to this discussion: https://www.klayout.de/forum/discussion/2147/find-and-delete-the-empty-cells-in-the-gds#latest
It appears as if this method call:
ly.delete_cells([ c.cell_index() for c in ly.each_cell() if c.is_empty() ])
is very slow sometimes.
The text was updated successfully, but these errors were encountered:
There is a simple workaround:
ly.start_changes() ly.delete_cells([ c.cell_index() for c in ly.each_cell() if c.is_empty() ]) ly.end_changes()
However, the delete_cells method should internally disable layout updates.
Sorry, something went wrong.
Fixed #1167 (delete_cells slow)
c8e60d6
7594376
klayoutmatthias
No branches or pull requests
This is related to this discussion: https://www.klayout.de/forum/discussion/2147/find-and-delete-the-empty-cells-in-the-gds#latest
It appears as if this method call:
is very slow sometimes.
The text was updated successfully, but these errors were encountered: