From 26542296a52da87cc3eadc347af289dda1053cb0 Mon Sep 17 00:00:00 2001 From: Thomas Viehmann Date: Tue, 3 Dec 2024 12:58:32 +0100 Subject: [PATCH] cleanup --- thunder/executors/passes.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/thunder/executors/passes.py b/thunder/executors/passes.py index 9f162ac86f..6060e0a50a 100644 --- a/thunder/executors/passes.py +++ b/thunder/executors/passes.py @@ -111,15 +111,6 @@ def process_bsym(self, bsym): extrace, _ = OpExProcessor(trace)() - # extrace, _ = interpret_trace_to_trace(trace, *trace.args, symbol_mapper=symbol_mapper, **trace.kwargs) - # Restores original variables - # bound_symbols: list[BoundSymbol] = [] - # for bsym in extrace.bound_symbols: - # nbsym: BoundSymbol = bsym.from_bsym_swap_proxies(swapmap) - # bound_symbols.append(nbsym) - - # extrace.bound_symbols = bound_symbols - end_time_ns = time.perf_counter_ns() elapsed_time_ns = end_time_ns - start_time_ns elapsed_time_millis = elapsed_time_ns // 1000000