This file is indexed.

/usr/include/trilinos/Kokkos_DefaultKernels.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
#ifndef KOKKOS_DEFAULT_KERNELS_
#define KOKKOS_DEFAULT_KERNELS_

#include "Kokkos_ConfigDefs.hpp"
#include "Kokkos_DefaultSparseOps.hpp"
#include "Kokkos_DefaultBlockSparseMultiply.hpp"

namespace Kokkos {

  template <class Scalar, class Ordinal, class Node>
  struct DefaultKernels {
    typedef Kokkos::DefaultSparseOps          <Scalar,Ordinal,Node>      SparseOps;
    typedef Kokkos::DefaultBlockSparseMultiply<Scalar,Ordinal,Node> BlockSparseOps;
  };

}


#endif