[torchfuzz] fix some errors when walkthroughing README.md (#165225)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/165225
Approved by: https://github.com/soulitzer
This commit is contained in:
can-gaa-hou
2025-10-13 17:17:47 +00:00
committed by PyTorch MergeBot
parent e93343cfab
commit 2c600bb665
2 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@ print('Compile Success! ✅')
### Single Seed Execution
```bash
cd tools/experimental/dynamic_shapes/torchfuzz
cd tools/experimental/torchfuzz
python fuzzer.py --seed 42
```

View File

@ -6,8 +6,8 @@ Visualization tools for operation stacks and graphs as DAGs.
import subprocess
from ops_fuzzer import OperationGraph
from tensor_fuzzer import TensorSpec
from torchfuzz.ops_fuzzer import OperationGraph
from torchfuzz.tensor_fuzzer import TensorSpec
def save_and_render_dot(dot_content: str, filename: str = "operation_stack"):