Skip to content

Commit

Permalink
Disable optimize_block per default
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Nov 29, 2024
1 parent f8b119e commit e749fe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/icicle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init__(self, architecture: str, *,
recompilation = True,
track_uninitialized = False,
optimize_instructions = True,
optimize_block = True,
optimize_block = False,
tracing = False,
) -> None: ...

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ impl Icicle {
recompilation = true,
track_uninitialized = false,
optimize_instructions = true,
optimize_block = true,
optimize_block = false,
tracing = false,
))]
pub fn new(
Expand Down

0 comments on commit e749fe1

Please sign in to comment.