CLBlast/test/performance/routines/level2/xsymv.cpp

32 lines
1.5 KiB
C++
Raw Normal View History

2015-07-31 17:13:41 +02:00
// =================================================================================================
// 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>
//
// =================================================================================================
#include "test/performance/client.hpp"
#include "test/routines/level2/xsymv.hpp"
2015-07-31 17:13:41 +02:00
// Main function (not within the clblast namespace)
int main(int argc, char *argv[]) {
const auto command_line_args = clblast::RetrieveCommandLineArguments(argc, argv);
switch(clblast::GetPrecision(command_line_args, clblast::Precision::kSingle)) {
case clblast::Precision::kHalf:
clblast::RunClient<clblast::TestXsymv<clblast::half>, clblast::half, clblast::half>(argc, argv); break;
2015-07-31 17:13:41 +02:00
case clblast::Precision::kSingle:
clblast::RunClient<clblast::TestXsymv<float>, float, float>(argc, argv); break;
case clblast::Precision::kDouble:
clblast::RunClient<clblast::TestXsymv<double>, double, double>(argc, argv); break;
case clblast::Precision::kComplexSingle: throw std::runtime_error("Unsupported precision mode");
case clblast::Precision::kComplexDouble: throw std::runtime_error("Unsupported precision mode");
2015-07-31 17:13:41 +02:00
}
return 0;
}
// =================================================================================================