Skip to content

Commit 0aef9a9

Browse files
authored
Merge pull request #345 from ROCm/readme_update
Cpp unit test Readme update
2 parents 63b4ce9 + c785563 commit 0aef9a9

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.rst

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,12 @@ After a successful Transformer Engine installation via `pip install`, execute th
9292
.. code-block:: bash
9393
9494
cd tests/cpp
95-
mkdir build
96-
cd build
97-
cmake ../
98-
make
99-
make test
95+
cmake -GNinja -Bbuild . && cmake --build build
96+
# To run util tests
97+
./build/util/test_util
98+
# To run operator tests using 64 threads
99+
OMP_NUM_THREADS=64 ./build/operator/test_operator
100100
101-
Note that some of operator unit tests fail in hipBLASLt config due to limited input data configurations support
102101
103102
Pytorch framework integration tests
104103
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)