From 0a191920045120bfd9e54b29b40a773cad66c121 Mon Sep 17 00:00:00 2001 From: jpekkila Date: Thu, 25 Jun 2020 19:53:39 +0300 Subject: [PATCH] Auto-optimization was not on for all GPUs when using MPI. May have to rerun all benchmarks for the MPI paper. --- src/core/device.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/core/device.cc b/src/core/device.cc index ed763a0..689eaf7 100644 --- a/src/core/device.cc +++ b/src/core/device.cc @@ -167,9 +167,7 @@ acDeviceCreate(const int id, const AcMeshInfo device_config, Device* device_hand *device_handle = device; // Autoptimize - if (id == 0) { - acDeviceAutoOptimize(device); - } + acDeviceAutoOptimize(device); return AC_SUCCESS; }