From 938ca2707fed28cff5ad35d2472c09828ef08ca7 Mon Sep 17 00:00:00 2001 From: CNugteren Date: Fri, 31 Jul 2015 17:35:42 +0200 Subject: Added HEMV routine --- test/performance/routines/level2/xhemv.cc | 40 +++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 test/performance/routines/level2/xhemv.cc (limited to 'test/performance/routines') diff --git a/test/performance/routines/level2/xhemv.cc b/test/performance/routines/level2/xhemv.cc new file mode 100644 index 00000000..dd70528e --- /dev/null +++ b/test/performance/routines/level2/xhemv.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 Xhemv command-line interface performance tester. +// +// ================================================================================================= + +#include "performance/client.h" +#include "routines/level2/xhemv.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; +} + +// ================================================================================================= -- cgit v1.2.3