Re-enabled graph tests (#736)
* enabled graph tests
* joined multi and single process CI testing
[ROCm/rccl commit: cf8cfa88a8]
This commit is contained in:
@@ -24,8 +24,7 @@ def runTestCommand (platform, project, gfilter, envars)
|
||||
cd ${project.paths.project_build_prefix}/build/release/test
|
||||
${sudo} ulimit -l unlimited
|
||||
ulimit -a
|
||||
${sudo} ${envars} UT_PROCESS_MASK=1 RCCL_ENABLE_SIGNALHANDLER=0 NCCL_DEBUG=INFO HSA_FORCE_FINE_GRAIN_PCIE=1 ./rccl-UnitTests --gtest_filter=${gfilter} --gtest_output=xml --gtest_color=yes
|
||||
${sudo} ${envars} UT_PROCESS_MASK=2 RCCL_ENABLE_SIGNALHANDLER=0 NCCL_DEBUG=INFO HSA_FORCE_FINE_GRAIN_PCIE=1 ./rccl-UnitTests --gtest_filter=${gfilter} --gtest_output=xml --gtest_color=yes
|
||||
${sudo} ${envars} RCCL_ENABLE_SIGNALHANDLER=0 NCCL_DEBUG=INFO HSA_FORCE_FINE_GRAIN_PCIE=1 ./rccl-UnitTests --gtest_filter=${gfilter} --gtest_output=xml --gtest_color=yes
|
||||
"""
|
||||
|
||||
platform.runCommand(this, command)
|
||||
|
||||
@@ -17,7 +17,7 @@ def runCI =
|
||||
def prj = new rocProject('rccl', 'Extended')
|
||||
|
||||
prj.timeout.test = 600
|
||||
prj.paths.build_command = './install.sh -t --npkit-enable'
|
||||
prj.paths.build_command = './install.sh -t'
|
||||
|
||||
// Define test architectures, optional rocm version argument is available
|
||||
def nodes = new dockerNodes(nodeDetails, jobName, prj)
|
||||
@@ -38,7 +38,7 @@ def runCI =
|
||||
{
|
||||
platform, project->
|
||||
|
||||
commonGroovy.runTestCommand(platform, project, "-*Graph", "")
|
||||
commonGroovy.runTestCommand(platform, project, "*", "")
|
||||
}
|
||||
|
||||
def packageCommand =
|
||||
|
||||
@@ -39,7 +39,7 @@ def runCI =
|
||||
{
|
||||
platform, project->
|
||||
|
||||
commonGroovy.runTestCommand(platform, project, "-*Graph", "UT_POW2_GPUS=1")
|
||||
commonGroovy.runTestCommand(platform, project, "*", "UT_POW2_GPUS=1")
|
||||
}
|
||||
|
||||
def packageCommand =
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(AllGather, DISABLED_OutOfPlaceGraph)
|
||||
TEST(AllGather, OutOfPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -64,7 +64,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(AllGather, DISABLED_InPlaceGraph)
|
||||
TEST(AllGather, InPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -102,7 +102,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(AllGather, DISABLED_ManagedMemGraph)
|
||||
TEST(AllGather, ManagedMemGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(AllReduce, DISABLED_OutOfPlaceGraph)
|
||||
TEST(AllReduce, OutOfPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -64,7 +64,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(AllReduce, DISABLED_InPlaceGraph)
|
||||
TEST(AllReduce, InPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -102,7 +102,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(AllReduce, DISABLED_ManagedMemGraph)
|
||||
TEST(AllReduce, ManagedMemGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(AllToAll, DISABLED_OutOfPlaceGraph)
|
||||
TEST(AllToAll, OutOfPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -64,7 +64,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(AllToAll, DISABLED_ManagedMemGraph)
|
||||
TEST(AllToAll, ManagedMemGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
|
||||
@@ -109,7 +109,7 @@ namespace RcclUnitTesting
|
||||
}
|
||||
|
||||
|
||||
TEST(AllToAllv, DISABLED_OutOfPlaceGraph)
|
||||
TEST(AllToAllv, OutOfPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Broadcast, DISABLED_OutOfPlaceGraph)
|
||||
TEST(Broadcast, OutOfPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -64,7 +64,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Broadcast, DISABLED_InPlaceGraph)
|
||||
TEST(Broadcast, InPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -102,7 +102,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Broadcast, DISABLED_ManagedMemGraph)
|
||||
TEST(Broadcast, ManagedMemGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Gather, DISABLED_OutOfPlaceGraph)
|
||||
TEST(Gather, OutOfPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -65,7 +65,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Gather, DISABLED_InPlaceGraph)
|
||||
TEST(Gather, InPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -103,7 +103,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Gather, DISABLED_ManagedMemGraph)
|
||||
TEST(Gather, ManagedMemGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(ReduceScatter, DISABLED_OutOfPlaceGraph)
|
||||
TEST(ReduceScatter, OutOfPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -64,7 +64,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(ReduceScatter, DISABLED_InPlaceGraph)
|
||||
TEST(ReduceScatter, InPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -102,7 +102,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(ReduceScatter, DISABLED_ManagedMemGraph)
|
||||
TEST(ReduceScatter, ManagedMemGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Reduce, DISABLED_OutOfPlaceGraph)
|
||||
TEST(Reduce, OutOfPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -64,7 +64,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Reduce, DISABLED_InPlaceGraph)
|
||||
TEST(Reduce, InPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -102,7 +102,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Reduce, DISABLED_ManagedMemGraph)
|
||||
TEST(Reduce, ManagedMemGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Scatter, DISABLED_OutOfPlaceGraph)
|
||||
TEST(Scatter, OutOfPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -64,7 +64,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Scatter, DISABLED_InPlaceGraph)
|
||||
TEST(Scatter, InPlaceGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
@@ -102,7 +102,7 @@ namespace RcclUnitTesting
|
||||
testBed.Finalize();
|
||||
}
|
||||
|
||||
TEST(Scatter, DISABLED_ManagedMemGraph)
|
||||
TEST(Scatter, ManagedMemGraph)
|
||||
{
|
||||
TestBed testBed;
|
||||
|
||||
|
||||
مرجع در شماره جدید
Block a user