-
-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip #205 * Bump black in /klayout_dot_config/python/SiEPIC/tidy3d/requirements Bumps [black](https://github.com/psf/black) from 22.3.0 to 24.3.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@22.3.0...24.3.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> * Update extend.py * Update run-layout-tests.yml * Update run-layout-tests.yml * Fix number of periods not passing to CDC model * Fix OPICS loading contraDC element parameters simulation results are now appended to xml * opics fixes WIP * Update utils.py * Create pcell_python_GDSfactory2.lym * Update run-layout-tests.yml * Update run-layout-tests.yml * Component min spacing (#210) * minimum-gc-spacing implemented, from DFT.xml, using <minimum-gc-spacing>60</minimum-gc-spacing> * v0.5.7 * Update run-layout-tests.yml * Update docker-image.yml * verification: print error messages * Update Functional Layout Check.lym * verification fix Verification.xml wasn't being read for PDK installed via PyPi. * v0.5.8 * Update __init__.py * Update sampling.py `ptp` was removed from the ndarray class in NumPy 2.0. Use np.ptp(arr, ...) instead * v0.5.9 * Update Dockerfile (#213) * layout_waveguide2/3 update - docstring - parameter checking: CML - added option for drawing PinRec & DevRec layers in layout_waveguide3() * create_cell2 function Wrapper for KLayout's Layout.create_cell(name, library), with error handling, and debugging information if unsuccessful * strip2rib pcell function * make_pin: option for layer name * Create KLayout-SiEPIC-Tools Python Programming.ipynb * find_pins, hierarchical improvement (WIP) - allow for overlapping pins, in different cells. Look for exact pin match. Implemented in PinA. Needs to be done for PinB. @lukasc-ubc * cell.find_pin improvement * new load_layout function * new SiEPIC.utils.waveguide_length function * sliver fix #214 * verification: shapesoutside check, fix * v0.5.10 * fixes to SiEPIC.scripts.connect_pins_with_waveguide * netlist via Script, updated unit test * unit tests connect_pin_with_waveguide: relaxed_pinnames connect_pin_with_waveguide: for connecting between different cells, hierarchially. delete_extra_topcells find_automated_measurement_labels calculate_area * unit testing test all fixed and PCells. fixes to two cells. * unit testing, SiEPIC.utils SiEPIC.utils.load_layout SiEPIC.utils.create_cell2 SiEPIC.utils.waveguide_length * Pin verification #215 * Pin verification #215 (fix) * Update run-layout-tests.yml * Unit testing: SiEPIC.scripts.instantiate_all_library_cells: add terminators (#216) Improved unit testing, where we test all cells by connecting a terminator, and run verification. And other cell fixes necessary to get this to work. * Update run-layout-tests.yml * Jupyter notebook, Programming new functions, Cell.plot (show an image), Cell.show (show in KLayout) in SiEPIC.extend * Update extend.py * Update run-layout-tests.yml * minor errors * bezier bend, sbend, taper * Update __init__.py * bezier update * fix menu Layout > Show selected components * Update README.md * remove Radius check in Verification Disabled for EBeam PDK, since we now have S-Bends, and the checker doesn't recognize them. * simply loading PDK libraries * Update test_load_libraries.py * Update run-layout-tests.yml * Create python-publish.yml * update scripts.load_klayout_library * Update run-layout-tests.yml * v0.5.14 * Update python-publish.yml * benchmark 100 MZIs conclusion: faster than gdsfactory for generic (lightweight) technology * FaML function and tests - new PCell GSiP.FaML_Si_1550_BB, for a facet-attached micro-lens - new function SiEPIC.utils.layout.FaML_two() to create a facet-attached micro-lens array (two channels), with test labels - new layer BlackBox - new unit test for the function and PCell - fix WAVEGUIDES.xml, by adding DevRec layer to Strip waveguide * v0.5.15 * pytest update * SiEPIC.utils.geometry.box_bezier_corners (new) * Update .gitignore * Update scripts.py - SiEPIC.scripts.export_layout (): export cell rather than entire layout * Update layout.py FaML defaults * Update test_FaML.py * SiEPIC.scripts.load_klayout_library: abs path allow either relative path or absolute path as input * Create check-path-length.yml * Update layout.py * Update check-path-length.yml * fix for SiEPIC.scripts.replace_cell() * fix for SiEPIC.utils.layout.coupler_array() * version check @mustafacc I think it would be nice to add an automated check when SiEPIC-Tools (and also the PDKs) are loaded. This takes 0.2 s. I tried to use concurrent.futures, but it doesn't seem to speed things up. * remove temporary files * requirements * new: SiEPIC.scripts.layout_diff Compare the difference between layouts. Useful for blackbox replacement double-checking. * Update __init__.py * Update test_scripts_layout_diff.py * test SiEPIC.utils.layout.coupler_array() * v0.5.16 * unit tests, remove temporary files --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mustafacc <mustafastation@gmail.com> Co-authored-by: Sean Lam <seanlam97@gmail.com>
- Loading branch information
1 parent
7f6ec06
commit c940969
Showing
59 changed files
with
3,955 additions
and
1,421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# .github/workflows/check-path-length.yml | ||
name: Check Path Length (200 limit) | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
check-path-length: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Check file path lengths | ||
run: | | ||
# Set the maximum allowed length | ||
MAX_LENGTH=200 | ||
# Find all files in the repository and check their path lengths | ||
too_long_paths=0 | ||
# Loop through each file path found by find | ||
IFS=$'\n' # Set Internal Field Separator to newline to handle spaces in filenames | ||
for file in $(find . -type f); do | ||
length=${#file} | ||
if (( length > MAX_LENGTH )); then | ||
echo "Path too long: $file ($length characters)" | ||
too_long_paths=$((too_long_paths + 1)) | ||
fi | ||
done | ||
if (( too_long_paths > 0 )); then | ||
echo "Error: Found $too_long_paths file paths longer than $MAX_LENGTH characters." | ||
exit 1 | ||
else | ||
echo "All file paths are within the $MAX_LENGTH character limit." | ||
fi | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# This workflow will upload a Python Package using Twine when a release is created | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries | ||
|
||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: Upload Python Package | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.x' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build | ||
- name: Build package | ||
run: | | ||
# python -m build | ||
cd klayout_dot_config/python | ||
python3 -m build | ||
cp -a dist ../.. | ||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
|
||
|
||
- name: Publish on KLayout Salt server | ||
run: | | ||
# Extract the tag from GITHUB_REF (e.g., 'refs/tags/v1.0.0' -> 'v1.0.0') | ||
RELEASE_TAG=${GITHUB_REF#refs/tags/} | ||
echo "Release tag: $RELEASE_TAG" | ||
# Use the tag in your script | ||
# ./your-script.sh "$RELEASE_TAG" | ||
curl "https://sami.klayout.org/register_request?agree_terms=1&mail=lukasc%40ece.ubc.ca&provider=5&url_path=siepic%2FSiEPIC-Tools.git%2Ftags%2F$RELEASE_TAG%2Fklayout_dot_config&user=Lukas+Chrostowski" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
klayoutrc | ||
*.lyrdb | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
370 changes: 370 additions & 0 deletions
370
Documentation/KLayout-SiEPIC-Tools Python Programming.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.