This file is indexed.

/usr/include/linbox/matrix/sparsematrix/sparse-tpl-matrix-omp.h is in liblinbox-dev 1.4.2-5build1.

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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/* linbox/matrix/sparsematrix/sparse-tpl-matrix-omp.h
 * Copyright (c) Linbox
 * ========LICENCE========
 * This file is part of the library LinBox.
 *
 * LinBox 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * ========LICENCE========

 * Written by Alex Stachnik <stachnik@udel.edu>
 */

/*! @file matrix/sparsematrix/sparse-tpl-matrix-omp.h
 * @ingroup sparsematrix
 * @ingroup omp
 * @brief NO DOC
 */

#ifndef __LINBOX_matrix_sparsematrix_sparse_tpl_matrix_omp_H
#define __LINBOX_matrix_sparsematrix_sparse_tpl_matrix_omp_H


#include <algorithm>
#include <iostream>
#include <map>
#include "linbox/linbox-config.h"
#include "linbox/util/debug.h"
#include "linbox/util/field-axpy.h"
#include "linbox/blackbox/blackbox-interface.h"
#include "linbox/field/hom.h"
#include "linbox/matrix/sparsematrix/triples-coord.h"

#include <vector>


namespace LinBox
{

union TriplesSmallCoord {
	uint8_t c[8];
	uint16_t s[4];
	uint32_t i[2];
	uint64_t l;
};

template <class Element>
struct TriplesBBTriple {
	TriplesBBTriple(TriplesCoord c):coord_(c) {}
	TriplesBBTriple(Index r, Index c, const Element& e){init(r, c, e);}
	void init(Index r, Index c, const Element& e)
	{
		row()=r;
		col()=c;
		elt_ = e;
	}
	inline Index& row() {return coord_.rowCol[0];}
	inline Index& col() {return coord_.rowCol[1];}
	inline Element& elt() {return elt_;}
	inline const Index& getRow() const {return coord_.rowCol[0];}
	inline const Index& getCol() const {return coord_.rowCol[1];}
	inline const Element& getElt() const {return elt_;}
	void toBlock() {coordToBlock(coord_);}
	void fromBlock() {coordFromBlock(coord_);}
	static bool compareBlockTriples(const TriplesBBTriple<Element>& lhs,
					const TriplesBBTriple<Element>& rhs) {
		return lhs.coord_<rhs.coord_;
	}
	TriplesCoord coord_;
	Element elt_;
};

struct TriplesBlock {
	Index start_,end_;
	TriplesCoord blockStart_, blockEnd_;

	TriplesBlock(Index start,Index end,TriplesCoord blockStart,TriplesCoord blockEnd) :
		start_(start),end_(end),
		blockStart_(blockStart),blockEnd_(blockEnd) {
	}
	Index nnz() const {return end_-start_;}
	TriplesCoord blockSize() const {return blockEnd_-blockStart_;}
	void toBlock() {
		coordToBlock(blockStart_);
		coordToBlock(blockEnd_);
	}
	void fromBlock() {
		coordFromBlock(blockStart_);
		coordFromBlock(blockEnd_);

	}
	inline const Index& getStartRow() const {
		return blockStart_.rowCol[0];
	}
	inline const Index& getStartCol() const {
		return blockStart_.rowCol[1];
	}
	inline const Index& getEndRow() const {
		return blockEnd_.rowCol[0];
	}
	inline const Index& getEndCol() const {
		return blockEnd_.rowCol[1];
	}
	static bool compareBlockSizes(const TriplesBlock& lhs,
				      const TriplesBlock& rhs) {
		return lhs.blockSize()<rhs.blockSize();
	}
};


template <class Element>
struct TriplesDataBlock {
	TriplesCoord blockStart_, blockEnd_, blockSize_;
	std::vector<TriplesSmallCoord> rowIxs_,colIxs_;
	std::vector<Element> elts_;
	int ccf_;

	typedef TriplesBBTriple<Element> Triple;
	typedef typename std::vector<Triple> TripleList;
	typedef typename TripleList::const_iterator TripleListIt;

        inline Index getRow(int ix) const {
                Index retVal=getStartRow();
                const TriplesSmallCoord *rowIxPtr=&(rowIxs_[ix>>ccf_]);
                switch (ccf_) {
                case 0:
                        return rowIxPtr->l;
                case 1:
                        return (retVal|(rowIxPtr->i[ix&1]));
                case 2:
                        return (retVal|(rowIxPtr->s[ix&3]));
                case 3:
                default:
                        return (retVal|(rowIxPtr->c[ix&7]));
                }
        }
        inline Index getCol(int ix) const {
                Index retVal=getStartCol();
                const TriplesSmallCoord *colIxPtr=&(colIxs_[ix>>ccf_]);
                switch (ccf_) {
                case 0:
                        return colIxPtr->l;
                case 1:
                        return (retVal|(colIxPtr->i[ix&1]));
                case 2:
                        return (retVal|(colIxPtr->s[ix&3]));
                case 3:
                default:
                        return (retVal|(colIxPtr->c[ix&7]));
                }
        }

	void init(TriplesCoord blockStart,
		  TriplesCoord blockEnd,
		  TriplesCoord myBlockSize, // blockSize shadows blockSize()
		  TripleListIt triplesStart,
		  TripleListIt triplesEnd,
		  int ccf) {
		blockStart_=blockStart;
		blockEnd_=blockEnd;
		blockSize_=myBlockSize;
		ccf_=ccf;
                int numElts=(int)(triplesEnd-triplesStart);
		rowIxs_.resize(1+(numElts>>ccf));
		colIxs_.resize(1+(numElts>>ccf));
		elts_.reserve(numElts);

		int coordOffset=0, coordIx=0;
		while (triplesStart != triplesEnd) {
			elts_.push_back(triplesStart->getElt());

			switch (ccf) {
			case 0:
				rowIxs_[coordIx].l=(uint64_t)(triplesStart->getRow());
				colIxs_[coordIx].l=(uint64_t)(triplesStart->getCol());
				break;
			case 1:
				rowIxs_[coordIx].i[coordOffset]=
					(uint32_t)(triplesStart->getRow());
				colIxs_[coordIx].i[coordOffset]=
					(uint32_t)(triplesStart->getCol());
				break;
			case 2:
				rowIxs_[coordIx].s[coordOffset]=
					(uint16_t)(triplesStart->getRow());
				colIxs_[coordIx].s[coordOffset]=
					(uint16_t)(triplesStart->getCol());
				break;
			case 3:
				rowIxs_[coordIx].c[coordOffset]=
					(uint8_t)(triplesStart->getRow());
				colIxs_[coordIx].c[coordOffset]=
					(uint8_t)(triplesStart->getCol());
				break;
			}

			++coordOffset;
			if (coordOffset==(1<<ccf)) {
				coordOffset=0;
				++coordIx;
			}
			++triplesStart;
		}
	}

	inline TriplesCoord blockSize() const {
		return blockSize_;
	}
	inline Index getStartRow() const {
		return blockStart_.rowCol[0];
	}
	inline Index getStartCol() const {
		return blockStart_.rowCol[1];
	}
	inline Index getEndRow() const {
		return blockEnd_.rowCol[0];
	}
	inline Index getEndCol() const {
		return blockEnd_.rowCol[1];
	}
};


/**
 *
 \ingroup blackbox
 * Sparse matrix representation which stores nonzero entries by i,j,value triples.
 */
template<class Field_>
class SparseMatrix<Field_, SparseMatrixFormat::TPL_omp> : public BlackboxInterface {

	public:
        typedef Field_ Field;
	typedef typename MatrixDomain<Field>::Matrix Matrix;
	typedef typename Field::Element Element;
	typedef SparseMatrix<Field, SparseMatrixFormat::TPL_omp> Self_t;

	// Default constructor.
	SparseMatrix();

	SparseMatrix(const SparseMatrix & B);

	SparseMatrix(const Field& F, std::istream& in);

	std::istream& read(std::istream& in);

	std::ostream& write(std::ostream& out);

	~SparseMatrix();

	SparseMatrix(const Field& F, Index r = 0, Index c = 0);

        void finalize();

	// (re)shape the matrix.  Any prior entries are abandoned.
	SparseMatrix& shape(const Field& F, Index r = 0, Index c = 0);

	// need cstor from matrix stream, read, write

	// Element e is added in the i,j position.
	void setEntry(Index i, Index j, const Element & e);

	// Element e is set to the i,j entry.
	Element& getEntry(Element& e, Index i, Index j) const;

	/** y <- A x.
	 */
	template<class OutVector, class InVector>
	OutVector & apply(OutVector &, const InVector &) const;

        // Mul with this on left: Y <- AX. Requires conformal shapes.
	// Requires Y != X
	template<class Mat1, class Mat2>
	Mat1 & applyLeft(Mat1 &Y, const Mat2 &X) const;

        // Mul with this on right: Y <- XA. Requires conformal shapes.
	// Requires Y != X
	template<class Mat1, class Mat2>
	Mat1 & applyRight(Mat1 &Y, const Mat2 &X) const;

	/** y <- A^T x.
	 */
	template<class OutVector, class InVector>
	OutVector & applyTranspose(OutVector &, const InVector &) const;

	Index rowdim() const;

	Index coldim() const;

	const Field & field() const;

	/* Returns number of non-zero entries */
	size_t size() const;

	template<typename Tp1_>
	struct rebind {
		typedef SparseMatrix<Tp1_> other;
		// BB : is this working at all ?
		void operator() (other & Ap, const Self_t& A)
		{
			Hom <typename Self_t::Field, Tp1_> hom( A.field(), Ap.field());

			typedef typename Tp1_::Element otherElt;
			typedef typename std::vector<otherElt> othervec;
			typedef typename std::vector<Element> selfvec;
			typedef typename othervec::iterator otheriter;
			typedef typename selfvec::const_iterator selfiter;
			otheriter vp_p; selfiter v_p;

			Ap.data_.resize(A.data.size());
			for (v_p = A.data_.begin(), vp_p = Ap.data_.begin();
			     v_p != A.data.end(); ++ v_p, ++ vp_p)
				hom.image (vp_p->elt, v_p->elt);
		}
	};

        //For debugging:
        typename std::vector<std::vector<std::vector<TriplesDataBlock<Element> > > >& getRowBlocks() {
                return rowBlocks_;
        }

protected:

	const static Index MAX_BLOCK_NNZ=1024;
        const static size_t CACHE_ALIGNMENT=64;

        inline static int roundUpIndex(Index val) {
                int exponent=0;
                --val;
                while (val > 0) {
                        ++exponent;
                        val=val>>1;
                }
                return 1<<exponent;
        }

	typedef TriplesBBTriple<Element> Triple;
	typedef TriplesDataBlock<Element> DataBlock;

        typedef std::vector<TriplesBlock> RefBlockList;

        typedef std::vector<DataBlock> BlockList;
        typedef typename BlockList::iterator BlockListIt;
        typedef std::vector<BlockList> VectorChunks;
        typedef typename VectorChunks::iterator VectorChunkIt;
        typedef std::vector<VectorChunks> SizedChunks;

	typedef std::map<Index,Index> IntervalSet;
	typedef typename IntervalSet::iterator IntervalIterator;
	typedef std::pair<Index,Index> Interval;

	void splitBlock(RefBlockList &superBlocks, TriplesBlock block);

	void toDataBlock(const RefBlockList& superBlocks,
			 BlockList& dataBlocks);

	void computeVectors(SizedChunks &sizedChunks,
			    BlockList &superBlocks,
			    const int rowOrCol);

        void combineIntervals(BlockListIt startIt,
                              BlockListIt endIt,
                              IntervalSet& intervals,
                              VectorChunks& chunksOut,
                              const int rowOrCol);

        void nonOverlappingIntervals(BlockListIt startIt,
                                     BlockListIt endIt,
                                     IntervalSet& intervals,
                                     const int rowOrCol);

	MatrixDomain<Field> MD_;

	std::vector<Triple> data_;

	Index rows_, cols_;

#define TRIPLES_UNSORTED 1
#define TRIPLES_SORTED 2

	//Either TRIPLES_SORTED or TRIPLES_UNSORTED
	int sortType_;

#define CHUNK_BY_ROW 1
#define CHUNK_BY_COL 2

        SizedChunks rowBlocks_;

        SizedChunks colBlocks_;
  }; // SparseMatrix

} // namespace LinBox

#include "sparse-tpl-matrix-omp.inl"

#endif // __LINBOX_matrix_sparsematrix_sparse_tpl_matrix_omp_H


// Local Variables:
// mode: C++
// tab-width: 8
// indent-tabs-mode: nil
// c-basic-offset: 8
// End:
// vim:sts=8:sw=8:ts=8:noet:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s