Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions mlir/docs/Bindings/Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ python -m pip install --upgrade pip
# packages will be installed there.
python -m pip install -r mlir/python/requirements.txt

# Now run `cmake`, `ninja`, et al.
# Now run your build command with `cmake`, `ninja`, et al.

# Run mlir tests. For example, to run python bindings tests only using ninja:
ninja check-mlir-python
```

For interactive use, it is sufficient to add the
Expand Down Expand Up @@ -859,7 +862,7 @@ mutually exclusive with a more complete mapping of the backing constructs.

## Testing

Tests should be added in the `test/Bindings/Python` directory and should
Tests should be added in the `mlir/test/python` directory and should
typically be `.py` files that have a lit run line.

We use `lit` and `FileCheck` based tests:
Expand Down
Loading