This file is indexed.

/usr/include/fflas-ffpack/fflas/fflas_simd.h is in fflas-ffpack-common 2.2.2-5.

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
/* -*- mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
// vim:sts=4:sw=4:ts=4:noet:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s
/*
 * Copyright (C) 2014 the FFLAS-FFPACK group
 *
 * Written by   Bastien Vialla<bastien.vialla@lirmm.fr>
 * Brice Boyer (briceboyer) <boyer.brice@gmail.com>
 *
 *
 * ========LICENCE========
 * This file is part of the library FFLAS-FFPACK.
 *
 * FFLAS-FFPACK 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========
 *.
 */

#ifndef __FFLASFFPACK_utils_simd_H
#define __FFLASFFPACK_utils_simd_H

#define SIMD_INT 1


//#include <x86intrin.h>
//#include <immintrin.h> -> only define for AVX
#include "fflas-ffpack/utils/fflas_intrinsic.h"
#include <iostream>
#include <type_traits>
#include <limits>

#include "fflas-ffpack/fflas-ffpack-config.h"
#include "fflas-ffpack/utils/debug.h"

#if defined(__GNUC__) || defined(__clang__) || defined(__INTEL_COMPILER)
#define INLINE __attribute__((always_inline)) inline
#else
#define INLINE inline
#endif

#if defined(__GNUC__) || defined(__clang__) || defined(__INTEL_COMPILER)
#define CONST __attribute__((const))
#else
#define CONST
#endif

#if defined(__GNUC__) || defined(__clang__) || defined(__INTEL_COMPILER)
#define PURE __attribute__((pure))
#else
#define PURE
#endif

#ifdef __FFLASFFPACK_HAVE_SSE4_1_INSTRUCTIONS
namespace std { // Why? - A.B. 2015-04-30

	inline
	std::ostream &operator<<(std::ostream &o, const __m128 &v) {
		const float *vArray = (const float *)(&v);
		o << '<';
		o << vArray[0] << ',' << vArray[1];
		o << ',';
		o << vArray[2] << ',' << vArray[3];
		o << '>';
		return o;
	}

	inline
	std::ostream &operator<<(std::ostream &o, const __m128i &v) {
		const int64_t *vArray = (const int64_t *)(&v);
		o << '<';
		o << vArray[0] << ',' << vArray[1];
		o << '>';
		return o;
	}

	inline
	std::ostream &operator<<(std::ostream &o, const __m128d &v) {
		const double *vArray = (const double *)(&v);
		o << '<';
		o << vArray[0] << ',' << vArray[1];
		o << '>';
		return o;
	}
} // std

#ifdef __FFLASFFPACK_HAVE_AVX_INSTRUCTIONS
namespace std {

	inline
	std::ostream &operator<<(std::ostream &o, const __m256 &v) {
		const float *vArray = (const float *)(&v);
		o << '<';
		o << vArray[0] << ',' << vArray[1] << ',' << vArray[2] << ',' << vArray[3];
		o << ',';
		o << vArray[4] << ',' << vArray[5] << ',' << vArray[6] << ',' << vArray[7];
		o << '>';
		return o;
	}

	inline
	std::ostream &operator<<(std::ostream &o, const __m256i &v) {
		const int64_t *vArray = (const int64_t *)(&v);
		o << '<';
		o << vArray[0] << ',' << vArray[1] << ',' << vArray[2] << ',' << vArray[3];
		o << '>';
		return o;
	}

	inline
	std::ostream &operator<<(std::ostream &o, const __m256d &v) {
		const double *vArray = (const double *)(&v);
		o << '<';
		o << vArray[0] << ',' << vArray[1] << ',' << vArray[2] << ',' << vArray[3];
		o << '>';
		return o;
	}
} // std
#endif // __FFLASFFPACK_HAVE_AVX_INSTRUCTIONS

#endif // __FFLASFFPACK_HAVE_SSE4_1_INSTRUCTIONS

namespace FFLAS {
	template <class T> struct support_simd : public std::false_type {};

#if defined(__FFLASFFPACK_HAVE_SSE4_1_INSTRUCTIONSUSE_SIMD)
	template <> struct support_simd<float> : public std::true_type {};
	template <> struct support_simd<double> : public std::true_type {};
#ifdef SIMD_INT
	template <> struct support_simd<int64_t> : public std::true_type {};
	template <> struct support_simd<int32_t> : public std::true_type {};
	template <> struct support_simd<int16_t> : public std::true_type {};
#endif
#endif

} // FFLAS

#define NORML_MOD(C, P, NEGP, MIN, MAX, Q, T)                                                                      \
{                                                                                                                  \
	Q = greater(C, MAX);                                                                                           \
	T = lesser(C, MIN);                                                                                            \
	Q = vand(Q, NEGP);                                                                                             \
	T = vand(T, P);                                                                                                \
	Q = vor(Q, T);                                                                                                 \
	C = add(C, Q);                                                                                                 \
	}

#define FLOAT_MOD(C, P, INVP, Q)                                                                                   \
{                                                                                                                  \
	Q = mul(C, INVP);                                                                                              \
	Q = floor(Q);                                                                                                  \
	C = fnmadd(C, Q, P);                                                                                           \
	}

// to activate SIMD with integers
//#define SIMD_INT

template <class T> struct simdToType;

/*
 * is_simd trait
 */

template <class T> struct is_simd {
	static const constexpr bool value = false;
	using type = std::integral_constant<bool, false>;
};

// SSE
#if defined(__FFLASFFPACK_HAVE_SSE4_1_INSTRUCTIONS) // SSE or better
#include "fflas-ffpack/fflas/fflas_simd/simd128.inl"

template <> struct simdToType<__m128d> { using type = double; };

template <> struct simdToType<__m128> { using type = float; };

template <> struct is_simd<__m128d> {
	static const constexpr bool value = true;
	using type = std::integral_constant<bool, true>;
};

template <> struct is_simd<__m128> {
	static const constexpr bool value = true;
	using type = std::integral_constant<bool, true>;
};

#ifdef SIMD_INT
template <> struct is_simd<__m128i> {
	static const constexpr bool value = true;
	using type = std::integral_constant<bool, true>;
};
#endif

#endif // SSE

// AVX
#if defined(__FFLASFFPACK_HAVE_AVX_INSTRUCTIONS) or defined(__FFLASFFPACK_HAVE_AVX2_INSTRUCTIONS)
#include "fflas-ffpack/fflas/fflas_simd/simd256.inl"

template <> struct simdToType<__m256d> { using type = double; };

template <> struct simdToType<__m256> { using type = float; };

template <> struct is_simd<__m256d> {
	static const constexpr bool value = true;
	using type = std::integral_constant<bool, true>;
};

template <> struct is_simd<__m256> {
	static const constexpr bool value = true;
	using type = std::integral_constant<bool, true>;
};

#ifdef SIMD_INT
template <> struct is_simd<__m256i> {
	static const constexpr bool value = true;
	using type = std::integral_constant<bool, true>;
};
#endif
#endif // AVX

/*
 * Simd functors
 */

template<typename T>
struct NoSimd {
	/*
	* alias to 128 bit simd register
	*/
	using vect_t = T*;

	/*
	* define the scalar type corresponding to the specialization
	*/
	using scalar_t = T;

	/*
	*  number of scalar_t in a simd register
	*/
	static const constexpr size_t vect_size = 1;

	// Test if the pointer p is multiple of alignment
	template <class TT> static constexpr bool valid(TT p) { return false; }

	// Test if n is multiple of vect_size
	template <class TT> static constexpr bool compliant(TT n) { return false; }
};

// #if defined(__FFLASFFPACK_HAVE_AVX_INSTRUCTIONS)

template <class T, bool = std::is_arithmetic<T>::value, bool = std::is_integral<T>::value> struct SimdChooser {};

template <class T, bool b> struct SimdChooser<T, false, b> { using value = NoSimd<T>; };

template <class T>
struct SimdChooser<T, true, false> // floating number
{
#ifdef __FFLASFFPACK_HAVE_AVX_INSTRUCTIONS
	using value = Simd256<T>;
#elif defined(__FFLASFFPACK_HAVE_SSE4_1_INSTRUCTIONS)
	using value = Simd128<T>;
#else
	using value = NoSimd<T>;
#endif
};

template <class T>
struct SimdChooser<T, true, true> // integral number
{
#ifdef __FFLASFFPACK_HAVE_AVX2_INSTRUCTIONS
	using value = Simd256<T>;
#elif __FFLASFFPACK_HAVE_SSE4_1_INSTRUCTIONS
	using value = Simd128<T>;
#else
	using value = NoSimd<T>;
#endif
};

template <class T> using Simd = typename SimdChooser<T>::value;

// template <class T> struct SimdChooser<T, true> {
// #if defined(__FFLASFFPACK_HAVE_AVX2_INSTRUCTIONS)
//     typedef Simd256<T> value;
// #else
//     typedef Simd128<T> value;
// #endif // __FFLASFFPACK_HAVE_AVX2_INSTRUCTIONS
// };

// #elif defined(__FFLASFFPACK_HAVE_SSE4_1_INSTRUCTIONS) // not AVX

// template <class T> using Simd = Simd128<T>;

// #endif // __FFLASFFPACK_HAVE_AVX_INSTRUCTIONS

#if defined(__FFLASFFPACK_HAVE_SSE4_1_INSTRUCTIONS) // SSE or better

// template <class T> struct floating_simd;

// template <> struct floating_simd<float> { typedef Simd<float> value; };

// template <> struct floating_simd<double> { typedef Simd<double> value; };

// template <> struct floating_simd<int64_t> {
// #if defined(__FFLASFFPACK_HAVE_AVX2_INSTRUCTIONS)
// // typedef Simd256<double> value;
// #else
//     typedef Simd128<double> value;
// #endif
// };

#endif

#ifdef __FFLASFFPACK_HAVE_SSE4_1_INSTRUCTIONS

namespace FFLAS { /*  print helper */

	// need friend ?
	template <class simdT>
	inline std::ostream &print(std::ostream &os, const typename simdT::vect_t &P) {
		typename simdT::scalar_t p[simdT::vect_size];
		os << '<';
		simdT::storeu(p, P);
		for (size_t i = 0; i < simdT::vect_size; ++i) {
			os << p[i];
			if (i < simdT::vect_size - 1)
				os << '|';
		}
		os << '>';

		return os;
	}

} // FFLAS

namespace std {
	// cannot be instanciated, T is not deductible
	template <class T>
	inline std::ostream &operator<<(std::ostream &o, const typename Simd128<T>::vect_t &v) {
		FFLAS::print<Simd128<T>>(o, v);
		return o;
	}
} // std

#ifdef __FFLASFFPACK_HAVE_AVX_INSTRUCTIONS
namespace std {
	// cannot be instanciated, T is not deductible
	template <class T>
	inline std::ostream &operator<<(std::ostream &o, const typename Simd256<T>::vect_t &v) {
		FFLAS::print(o, v);
		return o;
	}
}
#endif // __FFLASFFPACK_HAVE_AVX_INSTRUCTIONS

#endif // __FFLASFFPACK_HAVE_SSE4_1_INSTRUCTIONS

// Provide simd modular support
#include <fflas-ffpack/fflas/fflas_simd/simd_modular.inl>

#undef INLINE
#undef PURE
#undef CONST
#undef SIMD_INT

#endif /* __FFLASFFPACK_utils_simd_H */