Skip to content

Commit

Permalink
Convert executors to list fix for #1002
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanYashchuk committed Aug 21, 2024
1 parent 1781d58 commit f36b1cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thunder/benchmarks/benchmark_litgpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def setup_compile(self, model):
dynamo_config.cache_size_limit = 64
model = torch.compile(model)
elif "thunder" in self.compile:
executors = thunder.get_default_executors()
executors = list(thunder.get_default_executors())
if "inductor_cat" in self.compile:
from thunder.executors.torch_compile import torch_compile_cat_ex as torch_compile_ex

Expand Down

0 comments on commit f36b1cc

Please sign in to comment.