diff --git a/cuda_bindings/README.md b/cuda_bindings/README.md index 1cbafb5..a47346b 100644 --- a/cuda_bindings/README.md +++ b/cuda_bindings/README.md @@ -39,26 +39,35 @@ Latest dependencies can be found in [requirements.txt](https://github.com/NVIDIA ### Unit-tests -You can run the included tests with: - +To run unit-tests against local builds: +``` +python -m pytest tests/ +``` +To run unit-tests against installed builds: ``` -python -m pytest +pytest tests/ ``` ### Benchmark -You can run benchmark only tests with: - +To run unit-tests against local builds: +``` +python -m pytest --benchmark-only benchmark/ ``` -python -m pytest --benchmark-only +To run unit-tests against installed builds: +``` +pytest --benchmark-only benchmark/ ``` ### Samples -You can run the included tests with: - +To run unit-tests against local builds: +``` +python -m pytest benchmark/ +``` +To run unit-tests against installed builds: ``` -python -m pytest examples +pytest benchmark/ ``` ## Examples