summaryrefslogtreecommitdiff
path: root/src/database/kernels/invert.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/database/kernels/invert.hpp')
-rw-r--r--src/database/kernels/invert.hpp78
1 files changed, 0 insertions, 78 deletions
diff --git a/src/database/kernels/invert.hpp b/src/database/kernels/invert.hpp
deleted file mode 100644
index b7464382..00000000
--- a/src/database/kernels/invert.hpp
+++ /dev/null
@@ -1,78 +0,0 @@
-
-// =================================================================================================
-// 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 DatabaseEntry InvertHalf = {
- "Invert", Precision::kHalf, {"INTERNAL_BLOCK_SIZE"}, {
- { // Default
- kDeviceTypeAll, "default", {
- { "default", { { kDeviceNameDefault, Params{ 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } } } },
- }
- },
- }
-};
-
-// =================================================================================================
-
-const DatabaseEntry InvertSingle = {
- "Invert", Precision::kSingle, {"INTERNAL_BLOCK_SIZE"}, {
- { // Default
- kDeviceTypeAll, "default", {
- { "default", { { kDeviceNameDefault, Params{ 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } } } },
- }
- },
- }
-};
-
-// =================================================================================================
-
-const DatabaseEntry InvertComplexSingle = {
- "Invert", Precision::kComplexSingle, {"INTERNAL_BLOCK_SIZE"}, {
- { // Default
- kDeviceTypeAll, "default", {
- { "default", { { kDeviceNameDefault, Params{ 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } } } },
- }
- },
- }
-};
-
-// =================================================================================================
-
-const DatabaseEntry InvertDouble = {
- "Invert", Precision::kDouble, {"INTERNAL_BLOCK_SIZE"}, {
- { // Default
- kDeviceTypeAll, "default", {
- { "default", { { kDeviceNameDefault, Params{ 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } } } },
- }
- },
- }
-};
-
-// =================================================================================================
-
-const DatabaseEntry InvertComplexDouble = {
- "Invert", Precision::kComplexDouble, {"INTERNAL_BLOCK_SIZE"}, {
- { // Default
- kDeviceTypeAll, "default", {
- { "default", { { kDeviceNameDefault, Params{ 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } } } },
- }
- },
- }
-};
-
-// =================================================================================================
-} // namespace database
-} // namespace clblast