Skip to content

Commit

Permalink
Fixed the command (pytorch#4296)
Browse files Browse the repository at this point in the history
Summary:
changed `rm- -rf` to `rm -rf`

Pull Request resolved: pytorch#4296

Reviewed By: lucylq

Differential Revision: D59921910

Pulled By: dbort

fbshipit-source-id: bab21a39faae4db53ff4b04c02598f27c535d3ce
  • Loading branch information
tusharxoxoxo authored and facebook-github-bot committed Jul 18, 2024
1 parent 1d7d71d commit 92b87e4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion backends/xnnpack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ After exporting the XNNPACK Delegated model, we can now try running it with exam
cd executorch

# Get a clean cmake-out directory
rm- -rf cmake-out
rm -rf cmake-out
mkdir cmake-out

# Configure cmake
Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorial-xnnpack-delegate-lowering.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ After exporting the XNNPACK Delegated model, we can now try running it with exam
cd executorch

# Get a clean cmake-out directory
rm- -rf cmake-out
rm -rf cmake-out
mkdir cmake-out

# Configure cmake
Expand Down
4 changes: 2 additions & 2 deletions examples/xnnpack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Once we have the model binary (pte) file, then let's run it with ExecuTorch runt
cd executorch

# Get a clean cmake-out directory
rm- -rf cmake-out
rm -rf cmake-out
mkdir cmake-out

# Configure cmake
Expand Down Expand Up @@ -85,7 +85,7 @@ After exporting the XNNPACK Delegated model, we can now try running it with exam
cd executorch

# Get a clean cmake-out directory
rm- -rf cmake-out
rm -rf cmake-out
mkdir cmake-out

# Configure cmake
Expand Down

0 comments on commit 92b87e4

Please sign in to comment.