/usr/include/thrust/detail/adl_helper.h is in libthrust-dev 1.6.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | /*
* Copyright 2008-2012 NVIDIA Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <thrust/detail/config.h>
// the purpose of this header is to #include the memory.h header
// of the host and device systems. It should be #included in any
// code which uses adl to dispatch Thrust calls, except for the special
// functions malloc & free.
// Note that a system's memory.h header defines all of its tagged
// overloads, which makes it available to adl.
#if THRUST_HOST_SYSTEM == THRUST_HOST_SYSTEM_CPP
#include <thrust/system/cpp/memory.h>
#elif THRUST_HOST_SYSTEM == THRUST_HOST_SYSTEM_OMP
#include <thrust/system/omp/memory.h>
#elif THRUST_HOST_SYSTEM == THRUST_HOST_SYSTEM_TBB
#include <thrust/system/tbb/memory.h>
#else
#error "Unknown host system."
#endif // THRUST_HOST_SYSTEM
#if THRUST_DEVICE_SYSTEM == THRUST_DEVICE_SYSTEM_CUDA
#include <thrust/system/cuda/memory.h>
#elif THRUST_DEVICE_SYSTEM == THRUST_DEVICE_SYSTEM_OMP
#include <thrust/system/omp/memory.h>
#elif THRUST_DEVICE_SYSTEM == THRUST_DEVICE_SYSTEM_TBB
#include <thrust/system/tbb/memory.h>
#else
#error "Unknown device system."
#endif // THRUST_DEVICE_SYSTEM
|