This file is indexed.

/usr/include/vmmlib/blas_dgemm.hpp is in libvmmlib-dev 1.0-2.

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
#ifndef __VMML__VMMLIB_BLAS_DGEMM__HPP__
#define __VMML__VMMLIB_BLAS_DGEMM__HPP__


#include <vmmlib/matrix.hpp>
#include <vmmlib/exception.hpp>
#include <vmmlib/blas_includes.hpp>
#include <vmmlib/blas_types.hpp>

/** 
 *
 *   a wrapper for blas's DGEMM routine. 
 
 SUBROUTINE DGEMM(TRANSA,TRANSB,M,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
 *     .. Scalar Arguments ..
 DOUBLE PRECISION ALPHA,BETA
 INTEGER K,LDA,LDB,LDC,M,N
 CHARACTER TRANSA,TRANSB
 *     ..
 *     .. Array Arguments ..
 DOUBLE PRECISION A(LDA,*),B(LDB,*),C(LDC,*)
 *     ..
 *
 *  Purpose
 *  =======
 *
 *  DGEMM  performs one of the matrix-matrix operations
 *
 *     C := alpha*op( A )*op( B ) + beta*C,
 *
 *  where  op( X ) is one of
 *
 *     op( X ) = X   or   op( X ) = X**T,
 *
 *  alpha and beta are scalars, and A, B and C are matrices, with op( A )
 *  an m by k matrix,  op( B )  a  k by n matrix and  C an m by n matrix.
 *
 *
 *   more information in: http://www.netlib.org/blas/dgemm.f 
 *   or http://www.netlib.org/clapack/cblas/dgemm.c
 **
 */


namespace vmml
{
	
	namespace blas
	{
				
		
#if 0
		/* Subroutine */ 
		void cblas_dgemm(enum CBLAS_ORDER Order, enum CBLAS_TRANSPOSE TransA, enum CBLAS_TRANSPOSE TransB, 
						 blasint M, blasint N, blasint K,
						 double alpha, double *A, blasint lda, double *B, blasint ldb, double beta, double *C, blasint ldc);
		
#endif

		template< typename float_t >
		struct dgemm_params
		{
			CBLAS_ORDER     order;
			CBLAS_TRANSPOSE trans_a;
			CBLAS_TRANSPOSE trans_b;
			blas_int 		m;
			blas_int		n;
			blas_int		k;
			float_t			alpha;
			float_t*        a;
			blas_int        lda; //leading dimension of input array matrix left
			float_t*        b;
			blas_int        ldb; //leading dimension of input array matrix right
			float_t			beta;
			float_t*        c;
			blas_int        ldc; //leading dimension of output array matrix right
			
			friend std::ostream& operator << ( std::ostream& os, 
											  const dgemm_params< float_t >& p )
			{
				os 
				<< " (1)\torder "     << p.order << std::endl
				<< " (2)\ttrans_a "    << p.trans_a << std::endl
				<< " (3)\ttrans_b "     << p.trans_b << std::endl
				<< " (4)\tm "        << p.m << std::endl
				<< " (6)\tn "      << p.n << std::endl
				<< " (5)\tk "        << p.k << std::endl
				<< " (7)\talpha "       << p.alpha << std::endl 
				<< " (8)\ta "       << p.a << std::endl
				<< " (9)\tlda "       << p.lda << std::endl
				<< " (10)\tb "       << p.b << std::endl
				<< " (11)\tldb "   << p.ldb << std::endl
				<< " (12)\tbeta "        << p.beta << std::endl
				<< " (13)\tc "        << p.c << std::endl
				<< " (14)\tldc "        << p.ldc << std::endl
				<< std::endl;
				return os;
			}
			
		};
		
		
		
		template< typename float_t >
		inline void
		dgemm_call( dgemm_params< float_t >& p )
		{
			VMMLIB_ERROR( "not implemented for this type.", VMMLIB_HERE );
		}

		
		template<>
		inline void
		dgemm_call( dgemm_params< float >& p )
		{
			//std::cout << "calling blas sgemm (single precision) " << std::endl;
			cblas_sgemm( 
					p.order,
					p.trans_a,
					p.trans_b,
					p.m,
					p.n,
					p.k,
					p.alpha,
					p.a,
					p.lda,
					p.b,
					p.ldb,
				    p.beta,
					p.c,
					p.ldc
					);
			
		}
		
		template<>
		inline void
		dgemm_call( dgemm_params< double >& p )
		{
			//std::cout << "calling blas dgemm (double precision) " << std::endl;
			cblas_dgemm( 
				   p.order,
				   p.trans_a,
				   p.trans_b,
				   p.m,
				   p.n,
				   p.k,
				   p.alpha,
				   p.a,
				   p.lda,
				   p.b,
				   p.ldb,
				   p.beta,
				   p.c,
				   p.ldc
				   );
		}
		
	} // namespace blas
	
	
	
	template< size_t M, size_t K, size_t N, typename float_t >
	struct blas_dgemm
	{
		
		typedef matrix< M, K, float_t > matrix_left_t;
		typedef matrix< K, M, float_t > matrix_left_t_t;
		typedef matrix< K, N, float_t > matrix_right_t;
		typedef matrix< N, K, float_t > matrix_right_t_t;
		typedef matrix< M, N, float_t > matrix_out_t;
		typedef vector< M, float_t > vector_left_t;
		typedef vector< N, float_t > vector_right_t;
		
		blas_dgemm();
		~blas_dgemm() {};
		
		bool compute( const matrix_left_t& A_, const matrix_right_t& B_, matrix_out_t& C_ );
		bool compute( const matrix_left_t& A_, matrix_out_t& C_ );
		bool compute_t( const matrix_right_t& B_, matrix_out_t& C_ );
		bool compute_bt( const matrix_left_t& A_, const matrix_right_t_t& Bt_, matrix_out_t& C_ );
		bool compute_t( const matrix_left_t_t& A_, const matrix_right_t_t& B_, matrix_out_t& C_ );
		bool compute_vv_outer( const vector_left_t& A_, const vector_right_t& B_, matrix_out_t& C_ );
				
		
		blas::dgemm_params< float_t > p;
		
		const blas::dgemm_params< float_t >& get_params(){ return p; };
		
		
	}; // struct blas_dgemm
	
	
	template< size_t M, size_t K, size_t N, typename float_t >
	blas_dgemm< M, K, N, float_t >::blas_dgemm()
	{
		p.order      = CblasColMajor; //
		p.trans_a    = CblasNoTrans;
		p.trans_b    = CblasNoTrans;
		p.m          = M;
		p.n          = N;
		p.k          = K;
		p.alpha      = 1;
		p.a          = 0;
		p.lda        = M;
		p.b          = 0;
		p.ldb        = K; //no transpose
		p.beta       = 1;
		p.c          = 0;
		p.ldc        = M;
	}
	
	
		
	template< size_t M, size_t K, size_t N, typename float_t >
	bool
	blas_dgemm< M, K, N, float_t >::compute( 
												const matrix_left_t& A_, 
												const matrix_right_t& B_,
												matrix_out_t& C_ 
											)
	{
		// blas needs non-const data
		matrix_left_t* AA = new matrix_left_t( A_ );
		matrix_right_t* BB = new matrix_right_t( B_ );
		C_.zero();
		
		p.a         = AA->array;
		p.b         = BB->array;
		p.c         = C_.array;
		
		blas::dgemm_call< float_t >( p );
		
		//std::cout << p << std::endl; //debug
		
		delete AA;
		delete BB;
		
		return true;
	}	

	
	template< size_t M, size_t K, size_t N, typename float_t >
	bool
	blas_dgemm< M, K, N, float_t >::compute( const matrix_left_t& A_, matrix_out_t& C_ )
	{
		// blas needs non-const data
		matrix_left_t* AA = new matrix_left_t( A_ );
		C_.zero();
		
		p.trans_b   = CblasTrans;
		p.a         = AA->array;
		p.b         = AA->array;
		p.ldb       = N; 
		p.c         = C_.array;
		
		blas::dgemm_call< float_t >( p );
		
		//std::cout << p << std::endl; //debug

		delete AA;
		
		return true;
	}	
	
	template< size_t M, size_t K, size_t N, typename float_t >
	bool
	blas_dgemm< M, K, N, float_t >::compute_t( const matrix_right_t& B_, matrix_out_t& C_ )
	{
		// blas needs non-const data
		matrix_right_t* BB = new matrix_right_t( B_ );
		C_.zero();
		
		p.trans_a   = CblasTrans;
		p.a         = BB->array;
		p.b         = BB->array;
		p.lda       = K; 
		p.c         = C_.array;
		
		blas::dgemm_call< float_t >( p );
		
		//std::cout << p << std::endl; //debug
		
		delete BB;
		
		return true;
	}	
	
	template< size_t M, size_t K, size_t N, typename float_t >
	bool
	blas_dgemm< M, K, N, float_t >::compute_bt( 
											const matrix_left_t& A_, 
											const matrix_right_t_t& Bt_,
											matrix_out_t& C_ )
	{
		// blas needs non-const data
		matrix_left_t* AA = new matrix_left_t( A_ );
		matrix_right_t_t* BB = new matrix_right_t_t( Bt_ );
		C_.zero();
		
		p.trans_b   = CblasTrans;
		p.a         = AA->array;
		p.b         = BB->array;
		p.c         = C_.array;
		p.ldb       = N; 
		
		blas::dgemm_call< float_t >( p );
		
		//std::cout << p << std::endl; //debug
		
		delete AA;
		delete BB;
		
		return true;
	}		

	template< size_t M, size_t K, size_t N, typename float_t >
	bool
	blas_dgemm< M, K, N, float_t >::compute_t( 
											   const matrix_left_t_t& At_, 
											   const matrix_right_t_t& Bt_,
											   matrix_out_t& C_ )
	{
		// blas needs non-const data
		matrix_left_t_t* AA = new matrix_left_t_t( At_ );
		matrix_right_t_t* BB = new matrix_right_t_t( Bt_ );
		C_.zero();
		
		p.trans_a   = CblasTrans;
		p.trans_b   = CblasTrans;
		p.a         = AA->array;
		p.b         = BB->array;
		p.c         = C_.array;
		p.ldb       = N; 
		p.lda       = K; 
		
		blas::dgemm_call< float_t >( p );
		
		//std::cout << p << std::endl; //debug
		
		delete AA;
		delete BB;
		
		return true;
	}	
	
	template< size_t M, size_t K, size_t N, typename float_t >
	bool
	blas_dgemm< M, K, N, float_t >::compute_vv_outer( 
											  const vector_left_t& A_, 
											  const vector_right_t& B_,
											  matrix_out_t& C_ )
	{
		// blas needs non-const data
		vector_left_t* AA = new vector_left_t( A_ );
		vector_right_t* BB = new vector_right_t( B_ );
		C_.zero();
		
		p.trans_a   = CblasTrans;
		p.a         = AA->array;
		p.b         = BB->array;
		p.c         = C_.array;
		p.lda       = K; 
		
		blas::dgemm_call< float_t >( p );
		
		//std::cout << p << std::endl; //debug
		
		delete AA;
		delete BB;
		
		return true;
	}		
	
	
} // namespace vmml

#endif