From aa852bbe67a7dc9018afd7d1349184f0284d215c Mon Sep 17 00:00:00 2001 From: CNugteren Date: Sun, 12 Jul 2015 16:57:09 +0200 Subject: Added subfolders for the level1/2/3 routines --- test/performance/routines/level1/xaxpy.cc | 40 ++++++++++++++++++++++++++++++ test/performance/routines/level2/xgemv.cc | 40 ++++++++++++++++++++++++++++++ test/performance/routines/level3/xgemm.cc | 40 ++++++++++++++++++++++++++++++ test/performance/routines/level3/xhemm.cc | 40 ++++++++++++++++++++++++++++++ test/performance/routines/level3/xher2k.cc | 40 ++++++++++++++++++++++++++++++ test/performance/routines/level3/xherk.cc | 40 ++++++++++++++++++++++++++++++ test/performance/routines/level3/xsymm.cc | 40 ++++++++++++++++++++++++++++++ test/performance/routines/level3/xsyr2k.cc | 40 ++++++++++++++++++++++++++++++ test/performance/routines/level3/xsyrk.cc | 40 ++++++++++++++++++++++++++++++ test/performance/routines/level3/xtrmm.cc | 40 ++++++++++++++++++++++++++++++ test/performance/routines/xaxpy.cc | 40 ------------------------------ test/performance/routines/xgemm.cc | 40 ------------------------------ test/performance/routines/xgemv.cc | 40 ------------------------------ test/performance/routines/xhemm.cc | 40 ------------------------------ test/performance/routines/xher2k.cc | 40 ------------------------------ test/performance/routines/xherk.cc | 40 ------------------------------ test/performance/routines/xsymm.cc | 40 ------------------------------ test/performance/routines/xsyr2k.cc | 40 ------------------------------ test/performance/routines/xsyrk.cc | 40 ------------------------------ test/performance/routines/xtrmm.cc | 40 ------------------------------ 20 files changed, 400 insertions(+), 400 deletions(-) create mode 100644 test/performance/routines/level1/xaxpy.cc create mode 100644 test/performance/routines/level2/xgemv.cc create mode 100644 test/performance/routines/level3/xgemm.cc create mode 100644 test/performance/routines/level3/xhemm.cc create mode 100644 test/performance/routines/level3/xher2k.cc create mode 100644 test/performance/routines/level3/xherk.cc create mode 100644 test/performance/routines/level3/xsymm.cc create mode 100644 test/performance/routines/level3/xsyr2k.cc create mode 100644 test/performance/routines/level3/xsyrk.cc create mode 100644 test/performance/routines/level3/xtrmm.cc delete mode 100644 test/performance/routines/xaxpy.cc delete mode 100644 test/performance/routines/xgemm.cc delete mode 100644 test/performance/routines/xgemv.cc delete mode 100644 test/performance/routines/xhemm.cc delete mode 100644 test/performance/routines/xher2k.cc delete mode 100644 test/performance/routines/xherk.cc delete mode 100644 test/performance/routines/xsymm.cc delete mode 100644 test/performance/routines/xsyr2k.cc delete mode 100644 test/performance/routines/xsyrk.cc delete mode 100644 test/performance/routines/xtrmm.cc (limited to 'test/performance') diff --git a/test/performance/routines/level1/xaxpy.cc b/test/performance/routines/level1/xaxpy.cc new file mode 100644 index 00000000..fe90c697 --- /dev/null +++ b/test/performance/routines/level1/xaxpy.cc @@ -0,0 +1,40 @@ + +// ================================================================================================= +// 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 +// +// This file implements the Xaxpy command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level1/xaxpy.h" + +// ================================================================================================= + +// Shortcuts to the clblast namespace +using float2 = clblast::float2; +using double2 = clblast::double2; + +// Main function (not within the clblast namespace) +int main(int argc, char *argv[]) { + switch(clblast::GetPrecision(argc, argv)) { + case clblast::Precision::kHalf: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kSingle: + clblast::RunClient, float, float>(argc, argv); break; + case clblast::Precision::kDouble: + clblast::RunClient, double, double>(argc, argv); break; + case clblast::Precision::kComplexSingle: + clblast::RunClient, float2, float2>(argc, argv); break; + case clblast::Precision::kComplexDouble: + clblast::RunClient, double2, double2>(argc, argv); break; + } + return 0; +} + +// ================================================================================================= diff --git a/test/performance/routines/level2/xgemv.cc b/test/performance/routines/level2/xgemv.cc new file mode 100644 index 00000000..376c6c33 --- /dev/null +++ b/test/performance/routines/level2/xgemv.cc @@ -0,0 +1,40 @@ + +// ================================================================================================= +// 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 +// +// This file implements the Xgemv command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level2/xgemv.h" + +// ================================================================================================= + +// Shortcuts to the clblast namespace +using float2 = clblast::float2; +using double2 = clblast::double2; + +// Main function (not within the clblast namespace) +int main(int argc, char *argv[]) { + switch(clblast::GetPrecision(argc, argv)) { + case clblast::Precision::kHalf: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kSingle: + clblast::RunClient, float, float>(argc, argv); break; + case clblast::Precision::kDouble: + clblast::RunClient, double, double>(argc, argv); break; + case clblast::Precision::kComplexSingle: + clblast::RunClient, float2, float2>(argc, argv); break; + case clblast::Precision::kComplexDouble: + clblast::RunClient, double2, double2>(argc, argv); break; + } + return 0; +} + +// ================================================================================================= diff --git a/test/performance/routines/level3/xgemm.cc b/test/performance/routines/level3/xgemm.cc new file mode 100644 index 00000000..c45c238f --- /dev/null +++ b/test/performance/routines/level3/xgemm.cc @@ -0,0 +1,40 @@ + +// ================================================================================================= +// 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 +// +// This file implements the Xgemm command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level3/xgemm.h" + +// ================================================================================================= + +// Shortcuts to the clblast namespace +using float2 = clblast::float2; +using double2 = clblast::double2; + +// Main function (not within the clblast namespace) +int main(int argc, char *argv[]) { + switch(clblast::GetPrecision(argc, argv)) { + case clblast::Precision::kHalf: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kSingle: + clblast::RunClient, float, float>(argc, argv); break; + case clblast::Precision::kDouble: + clblast::RunClient, double, double>(argc, argv); break; + case clblast::Precision::kComplexSingle: + clblast::RunClient, float2, float2>(argc, argv); break; + case clblast::Precision::kComplexDouble: + clblast::RunClient, double2, double2>(argc, argv); break; + } + return 0; +} + +// ================================================================================================= diff --git a/test/performance/routines/level3/xhemm.cc b/test/performance/routines/level3/xhemm.cc new file mode 100644 index 00000000..d215653b --- /dev/null +++ b/test/performance/routines/level3/xhemm.cc @@ -0,0 +1,40 @@ + +// ================================================================================================= +// 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 +// +// This file implements the Xhemm command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level3/xhemm.h" + +// ================================================================================================= + +// Shortcuts to the clblast namespace +using float2 = clblast::float2; +using double2 = clblast::double2; + +// Main function (not within the clblast namespace) +int main(int argc, char *argv[]) { + switch(clblast::GetPrecision(argc, argv)) { + case clblast::Precision::kHalf: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kSingle: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kDouble: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kComplexSingle: + clblast::RunClient, float2, float2>(argc, argv); break; + case clblast::Precision::kComplexDouble: + clblast::RunClient, double2, double2>(argc, argv); break; + } + return 0; +} + +// ================================================================================================= diff --git a/test/performance/routines/level3/xher2k.cc b/test/performance/routines/level3/xher2k.cc new file mode 100644 index 00000000..2e1f248a --- /dev/null +++ b/test/performance/routines/level3/xher2k.cc @@ -0,0 +1,40 @@ + +// ================================================================================================= +// 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 +// +// This file implements the Xher2k command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level3/xher2k.h" + +// ================================================================================================= + +// Shortcuts to the clblast namespace +using float2 = clblast::float2; +using double2 = clblast::double2; + +// Main function (not within the clblast namespace) +int main(int argc, char *argv[]) { + switch(clblast::GetPrecision(argc, argv)) { + case clblast::Precision::kHalf: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kSingle: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kDouble: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kComplexSingle: + clblast::RunClient, float2, float>(argc, argv); break; + case clblast::Precision::kComplexDouble: + clblast::RunClient, double2, double>(argc, argv); break; + } + return 0; +} + +// ================================================================================================= diff --git a/test/performance/routines/level3/xherk.cc b/test/performance/routines/level3/xherk.cc new file mode 100644 index 00000000..4386f78c --- /dev/null +++ b/test/performance/routines/level3/xherk.cc @@ -0,0 +1,40 @@ + +// ================================================================================================= +// 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 +// +// This file implements the Xherk command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level3/xherk.h" + +// ================================================================================================= + +// Shortcuts to the clblast namespace +using float2 = clblast::float2; +using double2 = clblast::double2; + +// Main function (not within the clblast namespace) +int main(int argc, char *argv[]) { + switch(clblast::GetPrecision(argc, argv)) { + case clblast::Precision::kHalf: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kSingle: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kDouble: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kComplexSingle: + clblast::RunClient, float2, float>(argc, argv); break; + case clblast::Precision::kComplexDouble: + clblast::RunClient, double2, double>(argc, argv); break; + } + return 0; +} + +// ================================================================================================= diff --git a/test/performance/routines/level3/xsymm.cc b/test/performance/routines/level3/xsymm.cc new file mode 100644 index 00000000..bd014cee --- /dev/null +++ b/test/performance/routines/level3/xsymm.cc @@ -0,0 +1,40 @@ + +// ================================================================================================= +// 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 +// +// This file implements the Xsymm command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level3/xsymm.h" + +// ================================================================================================= + +// Shortcuts to the clblast namespace +using float2 = clblast::float2; +using double2 = clblast::double2; + +// Main function (not within the clblast namespace) +int main(int argc, char *argv[]) { + switch(clblast::GetPrecision(argc, argv)) { + case clblast::Precision::kHalf: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kSingle: + clblast::RunClient, float, float>(argc, argv); break; + case clblast::Precision::kDouble: + clblast::RunClient, double, double>(argc, argv); break; + case clblast::Precision::kComplexSingle: + clblast::RunClient, float2, float2>(argc, argv); break; + case clblast::Precision::kComplexDouble: + clblast::RunClient, double2, double2>(argc, argv); break; + } + return 0; +} + +// ================================================================================================= diff --git a/test/performance/routines/level3/xsyr2k.cc b/test/performance/routines/level3/xsyr2k.cc new file mode 100644 index 00000000..1261be88 --- /dev/null +++ b/test/performance/routines/level3/xsyr2k.cc @@ -0,0 +1,40 @@ + +// ================================================================================================= +// 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 +// +// This file implements the Xsyr2k command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level3/xsyr2k.h" + +// ================================================================================================= + +// Shortcuts to the clblast namespace +using float2 = clblast::float2; +using double2 = clblast::double2; + +// Main function (not within the clblast namespace) +int main(int argc, char *argv[]) { + switch(clblast::GetPrecision(argc, argv)) { + case clblast::Precision::kHalf: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kSingle: + clblast::RunClient, float, float>(argc, argv); break; + case clblast::Precision::kDouble: + clblast::RunClient, double, double>(argc, argv); break; + case clblast::Precision::kComplexSingle: + clblast::RunClient, float2, float2>(argc, argv); break; + case clblast::Precision::kComplexDouble: + clblast::RunClient, double2, double2>(argc, argv); break; + } + return 0; +} + +// ================================================================================================= diff --git a/test/performance/routines/level3/xsyrk.cc b/test/performance/routines/level3/xsyrk.cc new file mode 100644 index 00000000..5799130f --- /dev/null +++ b/test/performance/routines/level3/xsyrk.cc @@ -0,0 +1,40 @@ + +// ================================================================================================= +// 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 +// +// This file implements the Xsyrk command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level3/xsyrk.h" + +// ================================================================================================= + +// Shortcuts to the clblast namespace +using float2 = clblast::float2; +using double2 = clblast::double2; + +// Main function (not within the clblast namespace) +int main(int argc, char *argv[]) { + switch(clblast::GetPrecision(argc, argv)) { + case clblast::Precision::kHalf: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kSingle: + clblast::RunClient, float, float>(argc, argv); break; + case clblast::Precision::kDouble: + clblast::RunClient, double, double>(argc, argv); break; + case clblast::Precision::kComplexSingle: + clblast::RunClient, float2, float2>(argc, argv); break; + case clblast::Precision::kComplexDouble: + clblast::RunClient, double2, double2>(argc, argv); break; + } + return 0; +} + +// ================================================================================================= diff --git a/test/performance/routines/level3/xtrmm.cc b/test/performance/routines/level3/xtrmm.cc new file mode 100644 index 00000000..c30866e9 --- /dev/null +++ b/test/performance/routines/level3/xtrmm.cc @@ -0,0 +1,40 @@ + +// ================================================================================================= +// 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 +// +// This file implements the Xtrmm command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level3/xtrmm.h" + +// ================================================================================================= + +// Shortcuts to the clblast namespace +using float2 = clblast::float2; +using double2 = clblast::double2; + +// Main function (not within the clblast namespace) +int main(int argc, char *argv[]) { + switch(clblast::GetPrecision(argc, argv)) { + case clblast::Precision::kHalf: + throw std::runtime_error("Unsupported precision mode"); + case clblast::Precision::kSingle: + clblast::RunClient, float, float>(argc, argv); break; + case clblast::Precision::kDouble: + clblast::RunClient, double, double>(argc, argv); break; + case clblast::Precision::kComplexSingle: + clblast::RunClient, float2, float2>(argc, argv); break; + case clblast::Precision::kComplexDouble: + clblast::RunClient, double2, double2>(argc, argv); break; + } + return 0; +} + +// ================================================================================================= diff --git a/test/performance/routines/xaxpy.cc b/test/performance/routines/xaxpy.cc deleted file mode 100644 index 6a2b96c1..00000000 --- a/test/performance/routines/xaxpy.cc +++ /dev/null @@ -1,40 +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 -// -// This file implements the Xaxpy command-line interface performance tester. -// -// ================================================================================================= - -#include "performance/client.h" -#include "routines/xaxpy.h" - -// ================================================================================================= - -// Shortcuts to the clblast namespace -using float2 = clblast::float2; -using double2 = clblast::double2; - -// Main function (not within the clblast namespace) -int main(int argc, char *argv[]) { - switch(clblast::GetPrecision(argc, argv)) { - case clblast::Precision::kHalf: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kSingle: - clblast::RunClient, float, float>(argc, argv); break; - case clblast::Precision::kDouble: - clblast::RunClient, double, double>(argc, argv); break; - case clblast::Precision::kComplexSingle: - clblast::RunClient, float2, float2>(argc, argv); break; - case clblast::Precision::kComplexDouble: - clblast::RunClient, double2, double2>(argc, argv); break; - } - return 0; -} - -// ================================================================================================= diff --git a/test/performance/routines/xgemm.cc b/test/performance/routines/xgemm.cc deleted file mode 100644 index 9a02e595..00000000 --- a/test/performance/routines/xgemm.cc +++ /dev/null @@ -1,40 +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 -// -// This file implements the Xgemm command-line interface performance tester. -// -// ================================================================================================= - -#include "performance/client.h" -#include "routines/xgemm.h" - -// ================================================================================================= - -// Shortcuts to the clblast namespace -using float2 = clblast::float2; -using double2 = clblast::double2; - -// Main function (not within the clblast namespace) -int main(int argc, char *argv[]) { - switch(clblast::GetPrecision(argc, argv)) { - case clblast::Precision::kHalf: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kSingle: - clblast::RunClient, float, float>(argc, argv); break; - case clblast::Precision::kDouble: - clblast::RunClient, double, double>(argc, argv); break; - case clblast::Precision::kComplexSingle: - clblast::RunClient, float2, float2>(argc, argv); break; - case clblast::Precision::kComplexDouble: - clblast::RunClient, double2, double2>(argc, argv); break; - } - return 0; -} - -// ================================================================================================= diff --git a/test/performance/routines/xgemv.cc b/test/performance/routines/xgemv.cc deleted file mode 100644 index 6f69ef21..00000000 --- a/test/performance/routines/xgemv.cc +++ /dev/null @@ -1,40 +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 -// -// This file implements the Xgemv command-line interface performance tester. -// -// ================================================================================================= - -#include "performance/client.h" -#include "routines/xgemv.h" - -// ================================================================================================= - -// Shortcuts to the clblast namespace -using float2 = clblast::float2; -using double2 = clblast::double2; - -// Main function (not within the clblast namespace) -int main(int argc, char *argv[]) { - switch(clblast::GetPrecision(argc, argv)) { - case clblast::Precision::kHalf: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kSingle: - clblast::RunClient, float, float>(argc, argv); break; - case clblast::Precision::kDouble: - clblast::RunClient, double, double>(argc, argv); break; - case clblast::Precision::kComplexSingle: - clblast::RunClient, float2, float2>(argc, argv); break; - case clblast::Precision::kComplexDouble: - clblast::RunClient, double2, double2>(argc, argv); break; - } - return 0; -} - -// ================================================================================================= diff --git a/test/performance/routines/xhemm.cc b/test/performance/routines/xhemm.cc deleted file mode 100644 index 34798d8d..00000000 --- a/test/performance/routines/xhemm.cc +++ /dev/null @@ -1,40 +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 -// -// This file implements the Xhemm command-line interface performance tester. -// -// ================================================================================================= - -#include "performance/client.h" -#include "routines/xhemm.h" - -// ================================================================================================= - -// Shortcuts to the clblast namespace -using float2 = clblast::float2; -using double2 = clblast::double2; - -// Main function (not within the clblast namespace) -int main(int argc, char *argv[]) { - switch(clblast::GetPrecision(argc, argv)) { - case clblast::Precision::kHalf: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kSingle: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kDouble: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kComplexSingle: - clblast::RunClient, float2, float2>(argc, argv); break; - case clblast::Precision::kComplexDouble: - clblast::RunClient, double2, double2>(argc, argv); break; - } - return 0; -} - -// ================================================================================================= diff --git a/test/performance/routines/xher2k.cc b/test/performance/routines/xher2k.cc deleted file mode 100644 index 1b505737..00000000 --- a/test/performance/routines/xher2k.cc +++ /dev/null @@ -1,40 +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 -// -// This file implements the Xher2k command-line interface performance tester. -// -// ================================================================================================= - -#include "performance/client.h" -#include "routines/xher2k.h" - -// ================================================================================================= - -// Shortcuts to the clblast namespace -using float2 = clblast::float2; -using double2 = clblast::double2; - -// Main function (not within the clblast namespace) -int main(int argc, char *argv[]) { - switch(clblast::GetPrecision(argc, argv)) { - case clblast::Precision::kHalf: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kSingle: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kDouble: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kComplexSingle: - clblast::RunClient, float2, float>(argc, argv); break; - case clblast::Precision::kComplexDouble: - clblast::RunClient, double2, double>(argc, argv); break; - } - return 0; -} - -// ================================================================================================= diff --git a/test/performance/routines/xherk.cc b/test/performance/routines/xherk.cc deleted file mode 100644 index ce18152e..00000000 --- a/test/performance/routines/xherk.cc +++ /dev/null @@ -1,40 +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 -// -// This file implements the Xherk command-line interface performance tester. -// -// ================================================================================================= - -#include "performance/client.h" -#include "routines/xherk.h" - -// ================================================================================================= - -// Shortcuts to the clblast namespace -using float2 = clblast::float2; -using double2 = clblast::double2; - -// Main function (not within the clblast namespace) -int main(int argc, char *argv[]) { - switch(clblast::GetPrecision(argc, argv)) { - case clblast::Precision::kHalf: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kSingle: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kDouble: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kComplexSingle: - clblast::RunClient, float2, float>(argc, argv); break; - case clblast::Precision::kComplexDouble: - clblast::RunClient, double2, double>(argc, argv); break; - } - return 0; -} - -// ================================================================================================= diff --git a/test/performance/routines/xsymm.cc b/test/performance/routines/xsymm.cc deleted file mode 100644 index 8738ceda..00000000 --- a/test/performance/routines/xsymm.cc +++ /dev/null @@ -1,40 +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 -// -// This file implements the Xsymm command-line interface performance tester. -// -// ================================================================================================= - -#include "performance/client.h" -#include "routines/xsymm.h" - -// ================================================================================================= - -// Shortcuts to the clblast namespace -using float2 = clblast::float2; -using double2 = clblast::double2; - -// Main function (not within the clblast namespace) -int main(int argc, char *argv[]) { - switch(clblast::GetPrecision(argc, argv)) { - case clblast::Precision::kHalf: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kSingle: - clblast::RunClient, float, float>(argc, argv); break; - case clblast::Precision::kDouble: - clblast::RunClient, double, double>(argc, argv); break; - case clblast::Precision::kComplexSingle: - clblast::RunClient, float2, float2>(argc, argv); break; - case clblast::Precision::kComplexDouble: - clblast::RunClient, double2, double2>(argc, argv); break; - } - return 0; -} - -// ================================================================================================= diff --git a/test/performance/routines/xsyr2k.cc b/test/performance/routines/xsyr2k.cc deleted file mode 100644 index e4c76229..00000000 --- a/test/performance/routines/xsyr2k.cc +++ /dev/null @@ -1,40 +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 -// -// This file implements the Xsyr2k command-line interface performance tester. -// -// ================================================================================================= - -#include "performance/client.h" -#include "routines/xsyr2k.h" - -// ================================================================================================= - -// Shortcuts to the clblast namespace -using float2 = clblast::float2; -using double2 = clblast::double2; - -// Main function (not within the clblast namespace) -int main(int argc, char *argv[]) { - switch(clblast::GetPrecision(argc, argv)) { - case clblast::Precision::kHalf: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kSingle: - clblast::RunClient, float, float>(argc, argv); break; - case clblast::Precision::kDouble: - clblast::RunClient, double, double>(argc, argv); break; - case clblast::Precision::kComplexSingle: - clblast::RunClient, float2, float2>(argc, argv); break; - case clblast::Precision::kComplexDouble: - clblast::RunClient, double2, double2>(argc, argv); break; - } - return 0; -} - -// ================================================================================================= diff --git a/test/performance/routines/xsyrk.cc b/test/performance/routines/xsyrk.cc deleted file mode 100644 index 53fecb69..00000000 --- a/test/performance/routines/xsyrk.cc +++ /dev/null @@ -1,40 +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 -// -// This file implements the Xsyrk command-line interface performance tester. -// -// ================================================================================================= - -#include "performance/client.h" -#include "routines/xsyrk.h" - -// ================================================================================================= - -// Shortcuts to the clblast namespace -using float2 = clblast::float2; -using double2 = clblast::double2; - -// Main function (not within the clblast namespace) -int main(int argc, char *argv[]) { - switch(clblast::GetPrecision(argc, argv)) { - case clblast::Precision::kHalf: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kSingle: - clblast::RunClient, float, float>(argc, argv); break; - case clblast::Precision::kDouble: - clblast::RunClient, double, double>(argc, argv); break; - case clblast::Precision::kComplexSingle: - clblast::RunClient, float2, float2>(argc, argv); break; - case clblast::Precision::kComplexDouble: - clblast::RunClient, double2, double2>(argc, argv); break; - } - return 0; -} - -// ================================================================================================= diff --git a/test/performance/routines/xtrmm.cc b/test/performance/routines/xtrmm.cc deleted file mode 100644 index 2ab9ce77..00000000 --- a/test/performance/routines/xtrmm.cc +++ /dev/null @@ -1,40 +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 -// -// This file implements the Xtrmm command-line interface performance tester. -// -// ================================================================================================= - -#include "performance/client.h" -#include "routines/xtrmm.h" - -// ================================================================================================= - -// Shortcuts to the clblast namespace -using float2 = clblast::float2; -using double2 = clblast::double2; - -// Main function (not within the clblast namespace) -int main(int argc, char *argv[]) { - switch(clblast::GetPrecision(argc, argv)) { - case clblast::Precision::kHalf: - throw std::runtime_error("Unsupported precision mode"); - case clblast::Precision::kSingle: - clblast::RunClient, float, float>(argc, argv); break; - case clblast::Precision::kDouble: - clblast::RunClient, double, double>(argc, argv); break; - case clblast::Precision::kComplexSingle: - clblast::RunClient, float2, float2>(argc, argv); break; - case clblast::Precision::kComplexDouble: - clblast::RunClient, double2, double2>(argc, argv); break; - } - return 0; -} - -// ================================================================================================= -- cgit v1.2.3