From 3e78a993559d936df4323abf6f4ee4f104508e3a Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Tue, 14 Jun 2016 14:30:22 +0200 Subject: Moved device vendor and type checks to a common header --- include/internal/tuning.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/internal/tuning.h') diff --git a/include/internal/tuning.h b/include/internal/tuning.h index 8fc79aff..a44f79d6 100644 --- a/include/internal/tuning.h +++ b/include/internal/tuning.h @@ -61,9 +61,9 @@ void Tuner(int argc, char* argv[]) { printf("* Unsupported precision, skipping this tuning run\n\n"); return; } - isAMD = device.Vendor() == "AMD" || device.Vendor() == "Advanced Micro Devices, Inc."; - isARM = device.Vendor() == "ARM"; - isGPU = device.Type() == "GPU"; + isAMD = device.IsAMD(); + isARM = device.IsARM(); + isGPU = device.IsGPU(); } // Creates input buffers with random data -- cgit v1.2.3