We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5564291 commit fdf532cCopy full SHA for fdf532c
thunder/dynamo/utils.py
@@ -338,7 +338,7 @@ def get_nodes_in_unsupported_ctx_regions(gm: torch.fx.GraphModule) -> set[torch.
338
nodes_in_unsupported_ctx_regions: set[torch.fx.Node] = set()
339
ctx_cnt = 0 # Count of we have seen till now
340
341
- UNSUPPORTED_THUNDER_CTX = ()
+ UNSUPPORTED_THUNDER_CTX = (torch._C._functorch._vmap_increment_nesting, torch._C._functorch._vmap_decrement_nesting)
342
for node in gm.graph.nodes:
343
if node.op == "call_function" and node.target in UNSUPPORTED_THUNDER_CTX:
344
ctx_cnt += 1
0 commit comments