[pstl] Add missing includes

llvm-svn: 365218
This commit is contained in:
Louis Dionne 2019-07-05 16:05:26 +00:00
parent a62413526d
commit 766accd364
15 changed files with 24 additions and 1 deletions

View File

@ -10,9 +10,12 @@
#ifndef _PSTL_ALGORITHM_FWD_H
#define _PSTL_ALGORITHM_FWD_H
#include <iterator>
#include <type_traits>
#include <utility>
#include "pstl_config.h"
namespace __pstl
{
namespace __internal

View File

@ -18,9 +18,10 @@
#include "execution_impl.h"
#include "memory_impl.h"
#include "parallel_backend_utils.h"
#include "parallel_backend.h"
#include "parallel_backend_utils.h"
#include "parallel_impl.h"
#include "pstl_config.h"
#include "unseq_backend_simd.h"
namespace __pstl

View File

@ -12,6 +12,8 @@
#include <type_traits>
#include "pstl_config.h"
namespace __pstl
{
namespace execution

View File

@ -14,6 +14,7 @@
#include <iterator>
#include "execution_defs.h"
#include "pstl_config.h"
namespace std
{

View File

@ -13,6 +13,7 @@
#include <type_traits>
#include "execution_defs.h"
#include "pstl_config.h"
namespace std
{

View File

@ -11,6 +11,7 @@
#define _PSTL_GLUE_MEMORY_DEFS_H
#include "execution_defs.h"
#include "pstl_config.h"
namespace std
{

View File

@ -13,6 +13,7 @@
#include <iterator>
#include "execution_defs.h"
#include "pstl_config.h"
namespace std
{

View File

@ -12,6 +12,7 @@
#include <iterator>
#include "pstl_config.h"
#include "unseq_backend_simd.h"
namespace __pstl

View File

@ -13,6 +13,8 @@
#include <type_traits>
#include <utility>
#include "pstl_config.h"
namespace __pstl
{
namespace __internal

View File

@ -10,6 +10,8 @@
#ifndef _PSTL_PARALLEL_BACKEND_H
#define _PSTL_PARALLEL_BACKEND_H
#include "pstl_config.h"
#if defined(_PSTL_PAR_BACKEND_SERIAL)
# include "parallel_backend_serial.h"
#elif defined(_PSTL_PAR_BACKEND_TBB)

View File

@ -16,6 +16,8 @@
#include <numeric>
#include <utility>
#include "pstl_config.h"
namespace __pstl
{
namespace __serial

View File

@ -14,6 +14,7 @@
#include <algorithm>
#include <type_traits>
#include "pstl_config.h"
#include "parallel_backend_utils.h"
// Bring in minimal required subset of Intel TBB

View File

@ -15,6 +15,8 @@
#include <cassert>
#include "utils.h"
#include "pstl_config.h"
namespace __pstl
{
namespace __par_backend

View File

@ -10,6 +10,8 @@
#ifndef _PSTL_PARALLEL_IMPL_H
#define _PSTL_PARALLEL_IMPL_H
#include "pstl_config.h"
#include <atomic>
// This header defines the minimum set of parallel routines required to support Parallel STL,
// implemented on top of Intel(R) Threading Building Blocks (Intel(R) TBB) library

View File

@ -12,6 +12,7 @@
#include <type_traits>
#include "pstl_config.h"
#include "utils.h"
// This header defines the minimum set of vector routines required