This file is indexed.

/usr/include/trilinos/AbstractLinAlgPack_SparseVectorSliceOp.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
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
// @HEADER
// ***********************************************************************
// 
// Moocho: Multi-functional Object-Oriented arCHitecture for Optimization
//                  Copyright (2003) Sandia Corporation
// 
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
// 
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//  
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//  
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA
// Questions? Contact Roscoe A. Bartlett (rabartl@sandia.gov) 
// 
// ***********************************************************************
// @HEADER
//

#ifndef SPARSE_VECTOR_SLICE_OP_H
#define SPARSE_VECTOR_SLICE_OP_H

#include "AbstractLinAlgPack_SparseVectorOp.hpp"
#include "DenseLinAlgPack_AssertOp.hpp"
#include "DenseLinAlgPack_DVectorOp.hpp"

namespace AbstractLinAlgPack {

/** @name Inline functions to call linear algebra operations for SparseVectoSlice<> objects.
  *
  * These inline functions use the same exact syntax as the DenseLinAlgPack linear algebra
  * operations.  They call the generic templated linear algebra operations for the
  * SparseVectorTemplateInterface interface.  With these functions the abreaviation
  * for the sparse vector #SV# is replaced with the standard #V#.  The
  * assignmet operation #V_SV# is replaced with the more uniform #assign#
  * identifier so as to be compatable with DenseLinAlgPack naming.  Also, the suffixes
  * for #dot#, #norm_1#, and the other level one BLAS operations is dropped.
  *
  * In order to use SparseVector<> objects with these functions the client must
  * perform an explicit conversion.  For example the following code will not
  * compile (can not perform conversion from const SparseVector<> to const SparseVectorSlice<>):
  *
  *	SparseVector<element_type> sv;
  *	// ...
  * cout << norm_1(sv);
  *
  * Instead you must perform an explicit conversion for example by using operator()() as follows:
  *
  * cout << norm_1(sv());
  */
//@{ begin Sparse BLAS operations


/// result = dot(vs_rhs1,sv_rhs2) (BLAS xDOT)
template<class T_Ele>
inline
value_type dot(const DVectorSlice& vs_rhs1, const SparseVectorSlice<T_Ele>& sv_rhs2)
{
  return dot_V_SV(vs_rhs1, sv_rhs2);
}

/// result = dot(sv_rhs1,vs_rhs2) (BLAS xDOT)
template<class T_Ele>
inline
value_type dot(const SparseVectorSlice<T_Ele>& sv_rhs1, const DVectorSlice& vs_rhs2)
{
  return dot_SV_V(sv_rhs1, vs_rhs2);
}

/// result = ||sv_rhs||1 (BLAS xASUM)
template<class T_Ele>
inline
value_type norm_1(const SparseVectorSlice<T_Ele>& sv_rhs)
{
  return norm_1_SV(sv_rhs);
}

/// result = ||sv_rhs||2 (BLAS xNRM2)
template<class T_Ele>
inline
value_type norm_2(const SparseVectorSlice<T_Ele>& sv_rhs)
{
  return norm_2_SV(sv_rhs);
}

/// result = ||sv_rhs||inf (BLAS IxAMAX)
template<class T_Ele>
inline
value_type norm_inf(const SparseVectorSlice<T_Ele>& sv_rhs)
{
  return norm_inf_SV(sv_rhs);
}

/// result = max(sv_rhs)
template<class T_Ele>
inline
value_type max(const SparseVectorSlice<T_Ele>& sv_rhs)
{
  return max_SV(sv_rhs);
}

/// result = min(sv_rhs)
template<class T_Ele>
inline
value_type min(const SparseVectorSlice<T_Ele>& sv_rhs)
{
  return min_SV(sv_rhs);
}

/// vs_lhs += alpha * sv_rhs (BLAS xAXPY)
template<class T_Ele>
inline
void Vp_StV(DVectorSlice* vs_lhs, value_type alpha, const SparseVectorSlice<T_Ele>& sv_rhs)
{
  Vp_StSV(vs_lhs, alpha, sv_rhs);
}

/// vs_lhs += alpha * op(gms_rhs1) * sv_rhs2 (BLAS xGEMV)
template<class T_Ele>
inline
void Vp_StMtV(DVectorSlice* vs_lhs, value_type alpha, const DMatrixSlice& gms_rhs1
  , BLAS_Cpp::Transp trans_rhs1, const SparseVectorSlice<T_Ele>& sv_rhs2)
{
  Vp_StMtSV(vs_lhs, alpha, gms_rhs1, trans_rhs1, sv_rhs2);
}

/// vs_lhs += alpha * op(tri_gms_rhs1) * sv_rhs2 (BLAS xTRMV)
template<class T_Ele>
inline
void Vp_StMtV(DVectorSlice* vs_lhs, value_type alpha, const DMatrixSliceTri& tri_gms_rhs1
  , BLAS_Cpp::Transp trans_rhs1, const SparseVectorSlice<T_Ele>& sv_rhs2)
{
  Vp_StMtSV(vs_lhs, alpha, tri_gms_rhs1, trans_rhs1, sv_rhs2);
}

/// vs_lhs += alpha * op(sym_gms_rhs1) * sv_rhs2 (BLAS xSYMV)
template<class T_Ele>
inline
void Vp_StMtV(DVectorSlice* vs_lhs, value_type alpha, const DMatrixSliceSym& sym_gms_rhs1
  , BLAS_Cpp::Transp trans_rhs1, const SparseVectorSlice<T_Ele>& sv_rhs2)
{
  Vp_StMtSV(vs_lhs, alpha, sym_gms_rhs1, trans_rhs1, sv_rhs2);
}

/** \brief vs_lhs = alpha * op(M_rhs1) * sv_rhs2 + beta * vs_lhs
  *
  * Calls: #Vp_StMtSV(vs_lhs,alpha,M_rhs1,trans_rhs1,V_rhs2);#
  *
  * Needed for LinAlgOpPack template functions and provides
  * implementations for gms, tri, and sym matrices.
  *
  * The name Vp_StMtV could not be used because of a conflict
  * with another functions.
  */
template<class M, class T_Ele>
inline
void Vp_StMtSVS(DVectorSlice* vs_lhs, value_type alpha, const M& M_rhs1
  , BLAS_Cpp::Transp trans_rhs1, const SparseVectorSlice<T_Ele>& sv_rhs2
  , value_type beta)
{
  using DenseLinAlgPack::Vp_MtV_assert_sizes;
  using DenseLinAlgPack::Vt_S;
  Vp_MtV_assert_sizes(vs_lhs->dim(), M_rhs1.rows(), M_rhs1.cols(), trans_rhs1, sv_rhs2.dim());
  if(beta == 0.0)
    *vs_lhs = 0.0;
  else if(beta != 1.0)
    Vt_S(vs_lhs,beta);
  Vp_StMtV(vs_lhs,alpha,M_rhs1,trans_rhs1,sv_rhs2);
}

/// vs_lhs = alpha * op(gms_rhs1) * sv_rhs2 + beta * vs_lhs
template<class T_Ele>
inline
void Vp_StMtV(DVectorSlice* vs_lhs, value_type alpha, const DMatrixSlice& gms_rhs1
  , BLAS_Cpp::Transp trans_rhs1, const SparseVectorSlice<T_Ele>& sv_rhs2
  , value_type beta)
{	Vp_StMtSVS(vs_lhs, alpha, gms_rhs1, trans_rhs1, sv_rhs2, beta); }

/// vs_lhs = alpha * op(tri_gms_rhs1) * sv_rhs2 + beta * vs_lhs
template<class T_Ele>
inline
void Vp_StMtV(DVectorSlice* vs_lhs, value_type alpha, const DMatrixSliceTri& tri_gms_rhs1
  , BLAS_Cpp::Transp trans_rhs1, const SparseVectorSlice<T_Ele>& sv_rhs2
  , value_type beta)
{	Vp_StMtSVS(vs_lhs, alpha, tri_gms_rhs1, trans_rhs1, sv_rhs2, beta); }

/// vs_lhs = alpha * op(sym_gms_rhs1) * sv_rhs2 + beta * vs_lhs
template<class T_Ele>
inline
void Vp_StMtV(DVectorSlice* vs_lhs, value_type alpha, const DMatrixSliceSym& sym_gms_rhs1
  , BLAS_Cpp::Transp trans_rhs1, const SparseVectorSlice<T_Ele>& sv_rhs2
  , value_type beta)
{	Vp_StMtSVS(vs_lhs, alpha, sym_gms_rhs1, trans_rhs1, sv_rhs2, beta); }

//@} end Sparse BLAS Operations

} // end namespace AbstractLinAlgPack

#endif // SPARSE_VECTOR_SLICE_OP_H