Skip to content
Closed
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion projects/hipblaslt/tensilelite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ While full test suites can be run with a single `tox` command, developers may wi
build the hipBLASLt tensilelite client executable (`tensilelite-client`) and run individual tests separately.
This is useful for debugging specific problems or isolating issues in a specific test.

### Run Full Test Suite with Tox
### Run Test Suite with Tox

The standard workflow for running the entire test suite is to use `tox`. This command will build
`tensilelite-client` and execute all tests.
Expand All @@ -16,6 +16,12 @@ cd rocm-libraries/projects/hipblaslt/tensilelite
tox -e py3 -- Tensile/Tests -m common
```

Subsequently, you can run just the Tensile unit tests via:

```
tox -e unit -- Tensile/Tests/unit
```

### Build client with invoke and Run a Test (Default Path)

This workflow uses `invoke` to build the client into the default `build_tmp` directory.
Expand Down
Loading