Skip to content

Commit

Permalink
fix: disable graph compression
Browse files Browse the repository at this point in the history
  • Loading branch information
mattephi committed Oct 21, 2024
1 parent 01589a5 commit 6e6c97e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jaxadi/_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def expand_graph(func, graph, antigraph, output_map, values):

def translate(func: Function, add_jit=False, add_import=False):
graph, antigraph, output_map, values = create_graph(func)
graph, antigraph, output_map, values = expand_graph(func, graph, antigraph, output_map, values)
# graph, antigraph, output_map, values = expand_graph(func, graph, antigraph, output_map, values)
heights = compute_heights(func, graph, antigraph)

code = ""
Expand Down

0 comments on commit 6e6c97e

Please sign in to comment.