Skip to content

Commit

Permalink
use debug
Browse files Browse the repository at this point in the history
Signed-off-by: youkaichao <[email protected]>
  • Loading branch information
youkaichao committed Jan 21, 2025
1 parent ed404d9 commit f4c434d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vllm/compilation/backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ def __call__(self, graph: fx.GraphModule, example_inputs) -> Callable:
with open(graph_path, "w") as f:
f.write(src)

logger.info("Computation graph saved to %s", graph_path)
logger.debug("Computation graph saved to %s", graph_path)

self._called = True

Expand Down
4 changes: 2 additions & 2 deletions vllm/compilation/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ def bytecode_hook(self, old_code: CodeType, new_code: CodeType):
with open(decompiled_file, "w") as f:
f.write(src)

logger.info("Dynamo transformed code saved to %s",
decompiled_file)
logger.debug("Dynamo transformed code saved to %s",
decompiled_file)
except Exception:
pass

Expand Down

0 comments on commit f4c434d

Please sign in to comment.