Skip to content

Commit

Permalink
🤖 Lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-branch committed Jan 22, 2024
1 parent 084ac3e commit 9fa0e2b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion binaries.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@
}
]
}
}
}
11 changes: 6 additions & 5 deletions ivy/compiler/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def trace_graph(
params_v=None,
v=None
):
"""Takes `fn` and traces it into a more efficient composition of backend operations.
"""Takes `fn` and traces it into a more efficient composition of backend
operations.
Parameters
----------
Expand Down Expand Up @@ -91,8 +92,8 @@ def trace_graph(
>>> start = time.time()
>>> graph(x)
>>> print(time.time() - start)
0.0001785755157470703"""

0.0001785755157470703
"""
from ._compiler import trace_graph as _trace_graph

return _trace_graph(
Expand Down Expand Up @@ -156,8 +157,8 @@ def transpile(
Returns
-------
Either a transpiled Graph or a non-initialized LazyGraph."""

Either a transpiled Graph or a non-initialized LazyGraph.
"""
from ._compiler import transpile as _transpile

return _transpile(
Expand Down

0 comments on commit 9fa0e2b

Please sign in to comment.