mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-11 17:00:22 +00:00
- remove `#include <cstdint>` from `poll.hpp`. To make it only contains device-side code - Fix compilation issue, which will cause pytest fail randomly. Reuse the compiled result for same kernel with different arguments
10 lines
196 B
Bash
10 lines
196 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
if [[ $OMPI_COMM_WORLD_RANK == 0 ]]
|
|
then
|
|
pytest /root/mscclpp/python/test/test_mscclpp.py -x -v
|
|
else
|
|
pytest /root/mscclpp/python/test/test_mscclpp.py -x 2>&1 >/dev/null
|
|
fi
|