diff --git a/thunder/core/transform_common.py b/thunder/core/transform_common.py index 934f730baa..ac324b15ed 100644 --- a/thunder/core/transform_common.py +++ b/thunder/core/transform_common.py @@ -403,7 +403,7 @@ def is_functionalizable(bsym: BoundSymbol) -> bool: for bsym in computation_trace.bound_symbols: new_bsym = bsym.from_bsym_swap_proxies(swap_map) - # in-place ops has `prims.copy_` as the last subsymbol. + # in-place functionalizable ops has `prims.copy_` as the last subsymbol. if not is_functionalizable(new_bsym): bsyms.append(new_bsym) continue