소스 검색

really do not use CUDA devices since the testcase does not currently support cuFFT properly

Olivier Aumage 8 년 전
부모
커밋
afecfba3c3
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      starpufft/tests/testx.c

+ 5 - 0
starpufft/tests/testx.c

@@ -125,6 +125,11 @@ int main(int argc, char *argv[])
 	double timing;
 	size_t bytes;
 #endif
+	struct starpu_conf conf;
+	starpu_conf_init(&conf);
+	/* FIXME: the testcase needs to be updated to properly support cuFFT */
+	conf.ncuda = 0;
+	ret = starpu_init(&conf);
 
 	ret = starpu_init(NULL);
 	if (ret == -ENODEV) return 77;