mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-25 14:34:29 +00:00
20 lines
629 B
C++
20 lines
629 B
C++
// -*- C++ -*-
|
|
//===-- parallel_backend.h ------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef __PSTL_parallel_backend_H
|
|
#define __PSTL_parallel_backend_H
|
|
|
|
#if __PSTL_PAR_BACKEND_TBB
|
|
#include "parallel_backend_tbb.h"
|
|
#else
|
|
__PSTL_PRAGMA_MESSAGE("Parallel backend was not specified");
|
|
#endif
|
|
|
|
#endif /* __PSTL_parallel_backend_H */
|