1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-07-22 18:57:40 +02:00

Fix flags

This commit is contained in:
2323 2022-04-06 10:03:56 +02:00
parent f02e761b79
commit 72fad819bf
2 changed files with 6 additions and 5 deletions

View File

@ -93,6 +93,7 @@ AC_PROG_F77
m4_version_prereq([2.70],[], [AC_PROG_CC_C99]) m4_version_prereq([2.70],[], [AC_PROG_CC_C99])
AS_IF([test "$ac_cv_prog_cc_c99" = "no"], [AC_MSG_ERROR([The compiler does not support C99])]) AS_IF([test "$ac_cv_prog_cc_c99" = "no"], [AC_MSG_ERROR([The compiler does not support C99])])
AC_PROG_CC_C_O AC_PROG_CC_C_O
AM_PROG_CC_C_O
AC_PROG_FC AC_PROG_FC
AC_PROG_FC_C_O AC_PROG_FC_C_O
AC_FC_PP_DEFINE AC_FC_PP_DEFINE
@ -255,7 +256,7 @@ AS_IF([test "$HAVE_OPENACC_OFFLOAD" = "yes"], [
CFLAGS="$CFLAGS -fopenacc" CFLAGS="$CFLAGS -fopenacc"
;; ;;
*nvc*) *nvc*)
CFLAGS="$CFLAGS -acc -mp -target=gpu" CFLAGS="$CFLAGS -acc"
;; ;;
esac esac
@ -265,7 +266,7 @@ AS_IF([test "$HAVE_OPENACC_OFFLOAD" = "yes"], [
FCFLAGS="$FCFLAGS -fopenacc" FCFLAGS="$FCFLAGS -fopenacc"
;; ;;
*nvfortran*) *nvfortran*)
FCFLAGS="$FCFLAGS -acc -mp -target=gpu" FCFLAGS="$FCFLAGS -acc"
;; ;;
esac esac
@ -281,7 +282,7 @@ AS_IF([test "$HAVE_CUBLAS_OFFLOAD" = "yes"], [
CFLAGS="$CFLAGS -fopenacc" CFLAGS="$CFLAGS -fopenacc"
;; ;;
*nvc*) *nvc*)
CFLAGS="$CFLAGS -acc -mp -target=gpu" CFLAGS="$CFLAGS -acc"
;; ;;
esac esac
@ -291,7 +292,7 @@ AS_IF([test "$HAVE_CUBLAS_OFFLOAD" = "yes"], [
FCFLAGS="$FCFLAGS -fopenacc" FCFLAGS="$FCFLAGS -fopenacc"
;; ;;
*nvfortran*) *nvfortran*)
FCFLAGS="$FCFLAGS -acc -mp -target=gpu" FCFLAGS="$FCFLAGS -acc"
;; ;;
esac esac
]) ])

View File

@ -737,7 +737,7 @@ qmckl_exit_code qmckl_get_jastrow_offload_type (const qmckl_context context, qmc
"offload_type is a null pointer"); "offload_type is a null pointer");
} }
qmckl_context_struct* const ctx = (qmckl_context_struct* const) context; qmckl_context_struct* const ctx = (qmckl_context_struct*) context;
assert (ctx != NULL); assert (ctx != NULL);
int32_t mask = 1 << 0; int32_t mask = 1 << 0;