summaryrefslogtreecommitdiff
path: root/src/database/kernels/invert.hpp
blob: 2717f182c658568621cc1c0292c1ae2ab68aefac (plain)
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
// =================================================================================================
// This file is part of the CLBlast project. The project is licensed under Apache Version 2.0. This
// project loosely follows the Google C++ styleguide and uses a tab-size of two spaces and a max-
// width of 100 characters per line.
//
// Author(s):
//   Cedric Nugteren <www.cedricnugteren.nl>
//
// Tuning parameters for the diagonal matrix inversion kernels
//
// =================================================================================================

namespace clblast {
namespace database {
// =================================================================================================

const Database::DatabaseEntry InvertHalf = {
  "Invert", Precision::kHalf, {
    { // Default
      kDeviceTypeAll, "default", {
        { "default",                                         { {"INTERNAL_BLOCK_SIZE",16} } },
      }
    },
  }
};

// =================================================================================================

const Database::DatabaseEntry InvertSingle = {
  "Invert", Precision::kSingle, {
    { // Default
      kDeviceTypeAll, "default", {
        { "default",                                         { {"INTERNAL_BLOCK_SIZE",16} } },
      }
    },
  }
};

// =================================================================================================

const Database::DatabaseEntry InvertComplexSingle = {
  "Invert", Precision::kComplexSingle, {
    { // Default
      kDeviceTypeAll, "default", {
        { "default",                                         { {"INTERNAL_BLOCK_SIZE",16} } },
      }
    },
  }
};

// =================================================================================================

const Database::DatabaseEntry InvertDouble = {
  "Invert", Precision::kDouble, {
    { // Default
      kDeviceTypeAll, "default", {
        { "default",                                         { {"INTERNAL_BLOCK_SIZE",16} } },
      }
    },
  }
};

// =================================================================================================

const Database::DatabaseEntry InvertComplexDouble = {
  "Invert", Precision::kComplexDouble, {
    { // Default
      kDeviceTypeAll, "default", {
        { "default",                                         { {"INTERNAL_BLOCK_SIZE",16} } },
      }
    },
  }
};

// =================================================================================================
} // namespace database
} // namespace clblast