/usr/include/trilinos/Tpetra_BlockMap.cpp is in libtrilinos-dev 10.4.0.dfsg-1ubuntu2.
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 | #include "Tpetra_BlockMap.hpp"
#ifdef HAVE_TPETRA_EXPLICIT_INSTANTIATION
// #include "Tpetra_ExplicitInstantiationHelpers.hpp"
#include "Tpetra_BlockMap_def.hpp"
#include <Kokkos_SerialNode.hpp>
#if defined(HAVE_KOKKOS_TBB)
# include <Kokkos_TBBNode.hpp>
#endif
#if defined(HAVE_KOKKOS_THREADPOOL)
# include <Kokkos_TPINode.hpp>
#endif
#if defined(HAVE_KOKKOS_THRUST)
# include <Kokkos_ThrustGPUNode.hpp>
#endif
namespace Tpetra {
TPETRA_BLOCKMAP_INSTANT(int,int,Kokkos::SerialNode)
#if defined(HAVE_KOKKOS_TBB)
TPETRA_BLOCKMAP_INSTANT(int,int,Kokkos::TBBNode)
#endif
#if defined(HAVE_KOKKOS_THREADPOOL)
TPETRA_BLOCKMAP_INSTANT(int,int,Kokkos::TPINode)
#endif
#if defined(HAVE_KOKKOS_THRUST)
TPETRA_BLOCKMAP_INSTANT(int,int,Kokkos::ThrustGPUNode)
#endif
} // namespace Tpetra
#endif // HAVE_TPETRA_EXPLICIT_INSTANTIATION
|