This file is indexed.

/usr/include/viennacl/backend/cpu_ram.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
#ifndef VIENNACL_BACKEND_CPU_RAM_HPP_
#define VIENNACL_BACKEND_CPU_RAM_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/backend/cpu_ram.hpp
    @brief Implementations for the OpenCL backend functionality
*/

#include <cassert>
#include <vector>
#include "viennacl/tools/shared_ptr.hpp"

namespace viennacl
{
  namespace backend
  {
    namespace cpu_ram
    {
      typedef viennacl::tools::shared_ptr<char>  handle_type;
      // Requirements for backend:

      // * memory_create(size, host_ptr)
      // * memory_copy(src, dest, offset_src, offset_dest, size)
      // * memory_write_from_main_memory(src, offset, size,
      //                                 dest, offset, size)
      // * memory_read_to_main_memory(src, offset, size
      //                              dest, offset, size)
      // *
      //

      namespace detail
      {
        /** @brief Helper struct for deleting an pointer to an array */
        template<class U>
        struct array_deleter
        {
          void operator()(U* p) const { delete[] p; }
        };

      }

      /** @brief Creates an array of the specified size in main RAM. If the second argument is provided, the buffer is initialized with data from that pointer.
       *
       * @param size_in_bytes   Number of bytes to allocate
       * @param host_ptr        Pointer to data which will be copied to the new array. Must point to at least 'size_in_bytes' bytes of data.
       *
       */
      inline handle_type  memory_create(vcl_size_t size_in_bytes, const void * host_ptr = NULL)
      {
        if (!host_ptr)
          return handle_type(new char[size_in_bytes], detail::array_deleter<char>());

        handle_type new_handle(new char[size_in_bytes], detail::array_deleter<char>());

        // copy data:
        char * raw_ptr = new_handle.get();
        const char * data_ptr = static_cast<const char *>(host_ptr);
        for (vcl_size_t i=0; i<size_in_bytes; ++i)
          raw_ptr[i] = data_ptr[i];

        return new_handle;
      }

      /** @brief Copies 'bytes_to_copy' bytes from address 'src_buffer + src_offset' to memory starting at address 'dst_buffer + dst_offset'.
       *
       *  @param src_buffer     A smart pointer to the begin of an allocated buffer
       *  @param dst_buffer     A smart pointer to the end of an allocated buffer
       *  @param src_offset     Offset of the first byte to be written from the address given by 'src_buffer' (in bytes)
       *  @param dst_offset     Offset of the first byte to be written to the address given by 'dst_buffer' (in bytes)
       *  @param bytes_to_copy  Number of bytes to be copied
       */
      inline void memory_copy(handle_type const & src_buffer,
                              handle_type & dst_buffer,
                              vcl_size_t src_offset,
                              vcl_size_t dst_offset,
                              vcl_size_t bytes_to_copy)
      {
        assert( (dst_buffer.get() != NULL) && bool("Memory not initialized!"));
        assert( (src_buffer.get() != NULL) && bool("Memory not initialized!"));

        for (vcl_size_t i=0; i<bytes_to_copy; ++i)
          dst_buffer.get()[i+dst_offset] = src_buffer.get()[i + src_offset];
      }

      /** @brief Writes data from main RAM identified by 'ptr' to the buffer identified by 'dst_buffer'
       *
       * @param dst_buffer    A smart pointer to the beginning of an allocated buffer
       * @param dst_offset    Offset of the first written byte from the beginning of 'dst_buffer' (in bytes)
       * @param bytes_to_copy Number of bytes to be copied
       * @param ptr           Pointer to the first byte to be written
       */
      inline void memory_write(handle_type & dst_buffer,
                               vcl_size_t dst_offset,
                               vcl_size_t bytes_to_copy,
                               const void * ptr,
                               bool /*async*/)
      {
        assert( (dst_buffer.get() != NULL) && bool("Memory not initialized!"));

        for (vcl_size_t i=0; i<bytes_to_copy; ++i)
          dst_buffer.get()[i+dst_offset] = static_cast<const char *>(ptr)[i];
      }

      /** @brief Reads data from a buffer back to main RAM.
       *
       * @param src_buffer         A smart pointer to the beginning of an allocated source buffer
       * @param src_offset         Offset of the first byte to be read from the beginning of src_buffer (in bytes_
       * @param bytes_to_copy      Number of bytes to be read
       * @param ptr                Location in main RAM where to read data should be written to
       */
      inline void memory_read(handle_type const & src_buffer,
                              vcl_size_t src_offset,
                              vcl_size_t bytes_to_copy,
                              void * ptr,
                              bool /*async*/)
      {
        assert( (src_buffer.get() != NULL) && bool("Memory not initialized!"));

        for (vcl_size_t i=0; i<bytes_to_copy; ++i)
          static_cast<char *>(ptr)[i] = src_buffer.get()[i+src_offset];
      }


    }
  } //backend
} //viennacl
#endif