Removing OpenMP from unit tests (#163)

Этот коммит содержится в:
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();