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 e6251f1 commit 878b2b5Copy full SHA for 878b2b5
userbenchmark/dynamo/dynamobench/_dynamo/utils.py
@@ -3242,3 +3242,9 @@ def record(cls):
3242
finally:
3243
if config.record_compile_time_instruction_count:
3244
cls.end()
3245
+
3246
3247
+def realize_inputs(inputs: List[torch.fx.Node]):
3248
+ for inp in inputs:
3249
+ if isinstance(inp, torch.fx.node.Node):
3250
+ inp.meta["inductor_realize_to_strides"] = True
0 commit comments