From 1d420504cc1be00cfeff738e866f68cd27ae1012 Mon Sep 17 00:00:00 2001 From: Uldis Locans Date: Tue, 30 May 2017 11:05:12 +0200 Subject: [PATCH] fix FFT test when OPAL and/or Musr modules are not compiled --- auto-tuning/testFFT.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/auto-tuning/testFFT.cpp b/auto-tuning/testFFT.cpp index 69bbff6..c12981f 100644 --- a/auto-tuning/testFFT.cpp +++ b/auto-tuning/testFFT.cpp @@ -4,8 +4,6 @@ #include "Utility/TimeStamp.h" #include "DKSFFT.h" -#include "DKSOPAL.h" -#include "DKSBaseMuSR.h" using namespace std; @@ -49,7 +47,7 @@ int main(int argc, char *argv[]) { /* init DKSBase */ cout << "Init device and set function" << endl; - DKSBaseMuSR base; + DKSFFT base; base.setAPI(api_name, strlen(api_name)); base.setDevice(device_name, strlen(device_name)); cout << "init device" << endl;