brintos

brintos / llvm-project-archived public Read only

0
0
Text · 892 B · 7c5de57 Raw
31 lines · plain
1//===----------------------------------------------------------------------===//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-exception6//7//===----------------------------------------------------------------------===//8///9/// \file10/// This file is a SYCL 1.2.1 standard header file. Deprecated.11///12//===----------------------------------------------------------------------===//13 14#ifndef _LIBSYCL_CL_SYCL_HPP15#define _LIBSYCL_CL_SYCL_HPP16 17#if defined(__clang__)18#  pragma clang diagnostic push19#  pragma clang diagnostic ignored "-Wpedantic"20#  warning "CL/sycl.hpp is deprecated, use sycl/sycl.hpp"21#  pragma clang diagnostic pop22#endif23 24#include <sycl/sycl.hpp>25 26namespace cl {27namespace sycl = ::sycl;28}29 30#endif // _LIBSYCL_CL_SYCL_HPP31