Removing OpenMP from unit tests (#163)

This commit is contained in:
gilbertlee-amd
2019-12-20 11:41:56 -07:00
committed by GitHub
parent 2f4269d06d
commit 000bce6f27
11 changed files with 14 additions and 28 deletions
+2 -3
View File
@@ -5,7 +5,6 @@
************************************************************************/
#include "test_Broadcast.hpp"
#include <omp.h>
namespace CorrectnessTests
{
@@ -25,7 +24,7 @@ namespace CorrectnessTests
ComputeExpectedResults(dataset, root);
// Launch the reduction (1 thread per GPU)
#pragma omp parallel for num_threads(numDevices)
ncclGroupStart();
for (int i = 0; i < numDevices; i++)
{
ncclBroadcast(dataset.inputs[i],
@@ -33,7 +32,7 @@ namespace CorrectnessTests
numElements, dataType,
root, comms[i], streams[i]);
}
ncclGroupEnd();
// Wait for reduction to complete
Synchronize();