1/*===-- complex --- OpenMP complex wrapper for target regions --------- c++ -=== 2 * 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 * 7 *===-----------------------------------------------------------------------=== 8 */ 9 10#ifndef __CLANG_OPENMP_COMPLEX__ 11#define __CLANG_OPENMP_COMPLEX__ 12 13#ifndef _OPENMP 14#error "This file is for OpenMP compilation only." 15#endif 16 17// We require std::math functions in the complex builtins below. 18#include <cmath> 19 20#define __OPENMP_NVPTX__ 21#include <__clang_cuda_complex_builtins.h> 22#undef __OPENMP_NVPTX__ 23#endif 24 25// Grab the host header too. 26#include_next <complex> 27 28// If we are compiling against libc++, the macro _LIBCPP_STD_VER should be set 29// after including <cmath> above. Since the complex header we use is a 30// simplified version of the libc++, we don't need it in this case. If we 31// compile against libstdc++, or any other standard library, we will overload 32// the (hopefully template) functions in the <complex> header with the ones we 33// got from libc++ which decomposes math functions, like `std::sin`, into 34// arithmetic and calls to non-complex functions, all of which we can then 35// handle. 36#ifndef _LIBCPP_STD_VER 37 38#pragma omp begin declare variant match( \ 39 device = {arch(amdgcn, nvptx, nvptx64)}, \ 40 implementation = {extension(match_any, allow_templates)}) 41 42#include <complex_cmath.h> 43 44#pragma omp end declare variant 45 46#endif 47