Dosyalar

.git-blame-ignore-revs dosyasındaki sürümler yok sayılıyor. Bunun yerine normal sorumlu görüntüsü için buraya tıklayın.

27 satır
547 B
C++
Ham Kalıcı Bağlantı Normal Görünüm Geçmiş

2025-08-16 04:14:24 +05:30
/*************************************************************************
* Copyright (c) 2025 Advanced Micro Devices, Inc. All rights reserved.
*
* See LICENSE.txt for license information
************************************************************************/
#include "gtest/gtest.h"
#include "comm.h"
namespace RcclUnitTesting
{
TEST(CommTests, Sorter)
{
// Configuration
ncclTaskCollSorter* me_ptr = new ncclTaskCollSorter;
me_ptr->head = nullptr;
ASSERT_EQ(ncclTaskCollSorterEmpty(me_ptr), true);
delete me_ptr;
}
}