This file is indexed.

/usr/include/viennacl/generator/utils.hpp is in libviennacl-dev 1.5.2-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
#ifndef VIENNACL_GENERATOR_UTILS_HPP
#define VIENNACL_GENERATOR_UTILS_HPP

/* =========================================================================
   Copyright (c) 2010-2014, Institute for Microelectronics,
                            Institute for Analysis and Scientific Computing,
                            TU Wien.
   Portions of this software are copyright by UChicago Argonne, LLC.

                            -----------------
                  ViennaCL - The Vienna Computing Library
                            -----------------

   Project Head:    Karl Rupp                   rupp@iue.tuwien.ac.at

   (A list of authors and contributors can be found in the PDF manual)

   License:         MIT (X11), see file LICENSE in the base directory
============================================================================= */


/** @file viennacl/generator/utils.hpp
    @brief Internal utils for a dynamic OpenCL kernel generation.
*/

#include <sstream>

#include "viennacl/ocl/forwards.h"

#include "viennacl/traits/size.hpp"

#include "viennacl/scheduler/forwards.h"

namespace viennacl{

  namespace generator{

    namespace utils{

    template<class Fun>
    static typename Fun::result_type call_on_host_scalar(scheduler::lhs_rhs_element element, Fun const & fun){
        assert(element.type_family == scheduler::SCALAR_TYPE_FAMILY && bool("Must be called on a host scalar"));
        switch(element.numeric_type){
        case scheduler::FLOAT_TYPE :
            return fun(element.host_float);
        case scheduler::DOUBLE_TYPE :
            return fun(element.host_double);
        default :
            throw "not implemented";
        }
    }

    template<class Fun>
    static typename Fun::result_type call_on_scalar(scheduler::lhs_rhs_element element, Fun const & fun){
        assert(element.type_family == scheduler::SCALAR_TYPE_FAMILY && bool("Must be called on a scalar"));
        switch(element.numeric_type){
        case scheduler::FLOAT_TYPE :
            return fun(*element.scalar_float);
        case scheduler::DOUBLE_TYPE :
            return fun(*element.scalar_double);
        default :
            throw "not implemented";
        }
    }

    template<class Fun>
    static typename Fun::result_type call_on_vector(scheduler::lhs_rhs_element element, Fun const & fun){
        assert(element.type_family == scheduler::VECTOR_TYPE_FAMILY && bool("Must be called on a vector"));
        switch(element.numeric_type){
        case scheduler::FLOAT_TYPE :
            return fun(*element.vector_float);
        case scheduler::DOUBLE_TYPE :
            return fun(*element.vector_double);
        default :
            throw "not implemented";
        }
    }

    template<class Fun>
    static typename Fun::result_type call_on_implicit_vector(scheduler::lhs_rhs_element element, Fun const & fun){
        assert(element.type_family == scheduler::VECTOR_TYPE_FAMILY   && bool("Must be called on a implicit_vector"));
        assert(element.subtype     == scheduler::IMPLICIT_VECTOR_TYPE && bool("Must be called on a implicit_vector"));
        switch(element.numeric_type){
        case scheduler::FLOAT_TYPE :
            return fun(*element.implicit_vector_float);
        case scheduler::DOUBLE_TYPE :
            return fun(*element.implicit_vector_double);
        default :
            throw "not implemented";
        }
    }

    template<class Fun>
    static typename Fun::result_type call_on_matrix(scheduler::lhs_rhs_element element, Fun const & fun){
        assert(element.type_family == scheduler::MATRIX_TYPE_FAMILY && bool("Must be called on a matrix"));
        if (element.subtype == scheduler::DENSE_ROW_MATRIX_TYPE)
        {
            switch(element.numeric_type){
            case scheduler::FLOAT_TYPE :
                return fun(*element.matrix_row_float);
            case scheduler::DOUBLE_TYPE :
                return fun(*element.matrix_row_double);
            default :
                throw "not implemented";
            }
        }
        else
        {
            switch(element.numeric_type){
            case scheduler::FLOAT_TYPE :
                return fun(*element.matrix_col_float);
            case scheduler::DOUBLE_TYPE :
                return fun(*element.matrix_col_double);
            default :
                throw "not implemented";
            }
        }
    }


    template<class Fun>
    static typename Fun::result_type call_on_implicit_matrix(scheduler::lhs_rhs_element element, Fun const & fun){
        assert(element.type_family == scheduler::MATRIX_TYPE_FAMILY   && bool("Must be called on a matrix_vector"));
        assert(element.subtype     == scheduler::IMPLICIT_MATRIX_TYPE && bool("Must be called on a matrix_vector"));
        switch(element.numeric_type){
        case scheduler::FLOAT_TYPE :
            return fun(*element.implicit_matrix_float);
        case scheduler::DOUBLE_TYPE :
            return fun(*element.implicit_matrix_double);
        default :
            throw "not implemented";
        }
    }

      template<class Fun>
      static typename Fun::result_type call_on_element(scheduler::lhs_rhs_element const & element, Fun const & fun){
        switch(element.type_family){
          case scheduler::SCALAR_TYPE_FAMILY:
            if (element.subtype == scheduler::HOST_SCALAR_TYPE)
              return call_on_host_scalar(element, fun);
            else
              return call_on_scalar(element, fun);
          case scheduler::VECTOR_TYPE_FAMILY :
            if (element.subtype == scheduler::IMPLICIT_VECTOR_TYPE)
              return call_on_implicit_vector(element, fun);
            else
              return call_on_vector(element, fun);
          case scheduler::MATRIX_TYPE_FAMILY:
            if (element.subtype == scheduler::IMPLICIT_MATRIX_TYPE)
              return call_on_implicit_matrix(element, fun);
            else
              return call_on_matrix(element,fun);
          default:
            throw "not implemented";
        }
      }

      /** @brief Functor for returning the size of the underlying scalar type in bytes. */
      struct scalartype_size_fun{
          typedef vcl_size_t result_type;
          result_type operator()(float const &) const { return sizeof(float); }
          result_type operator()(double const &) const { return sizeof(double); }
          template<class T> result_type operator()(T const &) const { return sizeof(typename viennacl::result_of::cpu_value_type<T>::type); }
      };

      /** @brief Functor for returning the internal size of a vector. */
      struct internal_size_fun{
          typedef vcl_size_t result_type;
          template<class T>
          result_type operator()(T const &t) const { return viennacl::traits::internal_size(t); }
      };

      /** @brief Functor for obtaining the OpenCL handle from ViennaCL objects (vector, matrix, etc.). */
      struct handle_fun{
          typedef cl_mem result_type;
          template<class T>
          result_type operator()(T const &t) const { return t.handle().opencl_handle(); }
      };

      /** @brief Functor for obtaining the internal number of rows of a ViennaCL matrix. */
      struct internal_size1_fun{
          typedef vcl_size_t result_type;
          template<class T>
          result_type operator()(T const &t) const { return viennacl::traits::internal_size1(t); }
      };

      /** @brief Functor for obtaining the internal number of columns of a ViennaCL matrix. */
      struct internal_size2_fun{
          typedef vcl_size_t result_type;
          template<class T>
          result_type operator()(T const &t) const { return viennacl::traits::internal_size2(t); }
      };

      /** @brief Helper metafunction for checking whether two types are the same. */
      template<class T, class U>
      struct is_same_type { enum { value = 0 }; };

      /** \cond */
      template<class T>
      struct is_same_type<T,T> { enum { value = 1 }; };
      /** \endcond */

      template <class T>
      inline std::string to_string ( T const t )
      {
        std::stringstream ss;
        ss << t;
        return ss.str();
      }

      /** @brief Helper struct for converting a numerical type to its string representation. */
      template<class T>
      struct type_to_string;


      /** \cond */
      template<> struct type_to_string<float> { static const char * value() { return "float"; } };
      template<> struct type_to_string<double> { static const char * value() { return "double"; } };
      /** \endcond */

      /** @brief Helper struct for obtaining the first letter of a type. Used internally by the generator only. */
      template<class T>
      struct first_letter_of_type;

      /** \cond */
      template<> struct first_letter_of_type<float> { static char value() { return 'f'; } };
      template<> struct first_letter_of_type<double> { static char value() { return 'd'; } };
      template<> struct first_letter_of_type<viennacl::row_major> { static char value() { return 'r'; } };
      template<> struct first_letter_of_type<viennacl::column_major> { static char value() { return 'c'; } };
      /** \endcond */

      /** @brief A stream class where the kernel sources are streamed to. Takes care of indentation of the sources. */
      class kernel_generation_stream : public std::ostream{
        private:

          class kgenstream : public std::stringbuf{
            public:
              kgenstream(std::ostringstream& oss,unsigned int const & tab_count) : oss_(oss), tab_count_(tab_count){ }
              int sync() {
                for(unsigned int i=0 ; i<tab_count_;++i)
                  oss_ << "    ";
                oss_ << str();
                str("");
                return !oss_;
              }
              ~kgenstream() {  pubsync(); }
            private:
              std::ostream& oss_;
              unsigned int const & tab_count_;
          };

        public:
          kernel_generation_stream() : std::ostream(new kgenstream(oss,tab_count_)), tab_count_(0){ }

          std::string str(){ return oss.str(); }

          void inc_tab(){ ++tab_count_; }

          void dec_tab(){ --tab_count_; }

          ~kernel_generation_stream(){ delete rdbuf(); }

        private:
          unsigned int tab_count_;
          std::ostringstream oss;
      };


    }

  }

}
#endif