This file is indexed.

/usr/share/ufo/correlate.cl is in ufo-filters-data 0.14.1+dfsg1-1.1.

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
/*
 * Copyright (C) 2017 Karlsruhe Institute of Technology
 *
 * This file is part of Ufo.
 *
 * This library 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 3 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, see <http://www.gnu.org/licenses/>.
 */

kernel void
diff (global float *refs, global float *input, global float *result, unsigned height)
{
    const size_t x = get_global_id (0);
    const size_t y = get_global_id (1);
    const size_t width = get_global_size (0);
    const size_t idx = y * width + x;
    const size_t in_y = y % height;
    const float diff = refs[idx] - input[in_y * width + x];
    result[idx] = diff * diff;
}

kernel void
sum (global float *result, global float *matrix, unsigned width, unsigned height, unsigned row)
{
    const unsigned x = get_global_id (0);
    const unsigned offset = x * width * height;
    const unsigned total = width * height;
    float sum = 0.0f;

    for (unsigned i = 0; i < total; i++) {
        sum += result[offset + i];
    }

    matrix[get_global_size (0) * row + x] = sum;
}