Skip to content

Commit

Permalink
Merge pull request #143 from invrs-io/remove_print
Browse files Browse the repository at this point in the history
remove print statement
  • Loading branch information
mfschubert authored Sep 20, 2024
2 parents 77b092c + cf39d93 commit 9b97793
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "v1.3.0"
current_version = "v1.3.1"
commit = true
commit_args = "--no-verify"
tag = true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# invrs-gym
`v1.3.0`
`v1.3.1`

## Overview
The `invrs_gym` package is an open-source gym containing a diverse set of photonic design challenges, which are relevant for a wide range of applications such as AR/VR, optical networking, LIDAR, and others.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]

name = "invrs_gym"
version = "v1.3.0"
version = "v1.3.1"
description = "A collection of inverse design challenges"
keywords = ["topology", "optimization", "jax", "inverse design"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_gym/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Copyright (c) 2023 The INVRS-IO authors.
"""

__version__ = "v1.3.0"
__version__ = "v1.3.1"
__author__ = "Martin F. Schubert <[email protected]>"

from invrs_gym import challenges as challenges
Expand Down
3 changes: 0 additions & 3 deletions src/invrs_gym/challenges/extractor/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,9 +566,6 @@ def compute_power(
# Total extracted power measured at a monitor above the extractor.
# -------------------------------------------------------------------------

with jax.ensure_compile_time_eval():
print(s_matrix_before_source.start_layer_thickness)

# Compute the eigenmode amplitudes at the ambient flux monitor.
bwd_amplitude_ambient_monitor = fields.propagate_amplitude(
amplitude=bwd_amplitude_ambient_end,
Expand Down

0 comments on commit 9b97793

Please sign in to comment.