This file is indexed.

/usr/include/trilinos/Kokkos_DefaultNode.hpp 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
36
37
#ifndef KOKKOS_DEFAULT_NODE_HPP_
#define KOKKOS_DEFAULT_NODE_HPP_

#include "Kokkos_ConfigDefs.hpp"
#include "Kokkos_SerialNode.hpp"
#ifdef HAVE_KOKKOS_TBB
#include "Kokkos_TBBNode.hpp"
#endif
#ifdef HAVE_KOKKOS_THREADPOOL
#include "Kokkos_TPINode.hpp"
#endif

#include <Teuchos_RCP.hpp>

namespace Kokkos {

  class DefaultNode {
    public:
#ifdef HAVE_KOKKOS_THREADPOOL
      typedef TPINode DefaultNodeType;
#else
#ifdef HAVE_KOKKOS_TBB
      typedef TBBNode DefaultNodeType;
#else
      typedef SerialNode DefaultNodeType;
#endif
#endif

      static Teuchos::RCP<DefaultNodeType> getDefaultNode();

    private:
      static Teuchos::RCP<DefaultNodeType> node_;
  };

}

#endif