Files
rocm-systems/projects/rccl/test/common/CallCollectiveForked.hpp
T
Ameya Keshava Mallya 42d84317cf Add 'projects/rccl/' from commit '1f2f9f33bac3e8ecfd84c69af6063d7352c362fc'
git-subtree-dir: projects/rccl
git-subtree-mainline: 3fd8a0d393
git-subtree-split: 1f2f9f33ba
2025-12-11 20:46:05 +00: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