Removing OpenMP from unit tests (#163)

This commit is contained in:
gilbertlee-amd
2019-12-20 11:41:56 -07:00
کامیت شده توسط GitHub
والد 2f4269d06d
کامیت 000bce6f27
11فایلهای تغییر یافته به همراه14 افزوده شده و 28 حذف شده
+2 -2
مشاهده پرونده
@@ -5,7 +5,6 @@
************************************************************************/
#include "test_AllReduce.hpp"
#include <omp.h>
namespace CorrectnessTests
{
@@ -20,12 +19,13 @@ namespace CorrectnessTests
ComputeExpectedResults(dataset, op);
// Launch the reduction (1 thread per GPU)
#pragma omp parallel for num_threads(numDevices)
ncclGroupStart();
for (int i = 0; i < numDevices; i++)
{
ncclAllReduce(dataset.inputs[i], dataset.outputs[i],
numElements, dataType, op, comms[i], streams[i]);
}
ncclGroupEnd();
// Wait for reduction to complete
Synchronize();