2025-04-14 09:46:18 -05:00
|
|
|
/*************************************************************************
|
|
|
|
|
* Copyright (c) Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* See LICENSE.txt for license information
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
2025-02-04 09:11:32 -06:00
|
|
|
#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
|