Files
rocm-systems/projects/rccl/test/common/CallCollectiveForked.hpp
AbandiGa acf0bc1c6e added copyright (#1635)
[ROCm/rccl commit: 7a84c5dbb0]
2025-04-14 09:46:18 -05:00

18 lines
565 B
C++

/*************************************************************************
* Copyright (c) Advanced Micro Devices, Inc. All rights reserved.
*
* See LICENSE.txt for license information
************************************************************************/
#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