Files
rocm-systems/test/common/CallCollectiveForked.hpp
T

12 lines
301 B
C++
Raw Normal View History

#ifndef CALLCOLLECTIVEFORKED_H
#define CALLCOLLECTIVEFORKED_H
#include <vector>
namespace RcclUnitTesting
{
void callCollectiveForked(int nranks, int collID, const std::vector<int>& sendBuff, std::vector<int>& recvBuff, const std::vector<int>& expected, bool use_managed_mem = false);
}
#endif