From 832b1459998df533a55260177db23033bfc50d51 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sun, 18 Feb 2018 13:21:15 +0100 Subject: [PATCH] Pick zdotu interface based on OPENBLAS_COMPLEX_STRUCT --- utest/utest_main2.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/utest/utest_main2.c b/utest/utest_main2.c index 57eeea4da..0e8f14a66 100644 --- a/utest/utest_main2.c +++ b/utest/utest_main2.c @@ -268,11 +268,11 @@ CTEST( zdotu,zdotu_n_1) double y1[]={1.0,2.0}; openblas_complex_double result1=openblas_make_complex_double(0.0,0.0); openblas_complex_double result2=openblas_make_complex_double(-1.0,3.0); -//#ifdef __CTEST_MSVC -// BLASFUNC(zdotu)(&result1,&N,x1,&incX,y1,&incY); -//#else +#ifdef OPENBLAS_COMPLEX_STRUCT + BLASFUNC(zdotu)(&result1,&N,x1,&incX,y1,&incY); +#else result1=BLASFUNC(zdotu)(&N,x1,&incX,y1,&incY); -//#endif +#endif #ifdef OPENBLAS_COMPLEX_STRUCT ASSERT_DBL_NEAR_TOL(result1.real, result2.real, DOUBLE_EPS); @@ -290,7 +290,7 @@ CTEST(zdotu, zdotu_offset_1) double y1[]={5.0,6.0,7.0,8.0}; openblas_complex_double result1=openblas_make_complex_double(0.0,0.0); openblas_complex_double result2=openblas_make_complex_double(-9.0,32.0); -#ifdef __CTEST_MSVC +#ifdef OPENBLAS_COMPLEX_STRUCT BLASFUNC(zdotu)(&result1,&N,x1+1,&incX,y1+1,&incY); #else result1=BLASFUNC(zdotu)(&N,x1+1,&incX,y1+1,&incY);