summaryrefslogtreecommitdiff
path: root/test/correctness/misc/retrieve_parameters.cpp
blob: 568dab0ded70d6abc8fce3fbf0e209eb42692808 (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
79
80
81
82
83
84
// =================================================================================================
// 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>
//
// This file contains the tests for the RetrieveParameters function
//
// =================================================================================================

#include <string>
#include <vector>
#include <unordered_map>
#include <iostream>

#include "utilities/utilities.hpp"

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

template <typename T>
size_t RunRetrieveParametersTests(int argc, char *argv[], const bool silent, const std::string &routine_name) {
  auto arguments = RetrieveCommandLineArguments(argc, argv);
  auto errors = size_t{0};
  auto passed = size_t{0};

  // Retrieves the arguments
  auto help = std::string{"Options given/available:\n"};
  const auto platform_id = GetArgument(arguments, help, kArgPlatform, ConvertArgument(std::getenv("CLBLAST_PLATFORM"), size_t{0}));
  const auto device_id = GetArgument(arguments, help, kArgDevice, ConvertArgument(std::getenv("CLBLAST_DEVICE"), size_t{0}));
  auto args = Arguments<T>{};

  // Determines the test settings
  const auto kernel_name = std::string{"Xgemm"};
  const auto expected_parameters = std::vector<std::string>{
    "KWG", "KWI", "MDIMA", "MDIMC", "MWG", "NDIMB", "NDIMC", "NWG", "SA", "SB", "STRM", "STRN", "VWM", "VWN"
  };
  const auto expected_max_value = size_t{16384};

  // Prints the help message (command-line arguments)
  if (!silent) { fprintf(stdout, "\n* %s\n", help.c_str()); }

  // Initializes OpenCL
  const auto platform = Platform(platform_id);
  const auto device = Device(platform, device_id);

  // Retrieves the parameters
  fprintf(stdout, "* Testing RetrieveParameters for '%s'\n", routine_name.c_str());
  auto parameters = std::unordered_map<std::string,size_t>();
  const auto status = RetrieveParameters(device(), kernel_name, PrecisionValue<T>(), parameters);
  if (status != StatusCode::kSuccess) { errors++; }

  // Verifies the parameters
  for (const auto &expected_parameter : expected_parameters) {
    if (parameters.find(expected_parameter) != parameters.end()) {
      const auto value = parameters[expected_parameter];
      if (value < expected_max_value) { passed++; } else { errors++; }
      //std::cout << expected_parameter << " = " << value << std::endl;
    }
    else { errors++; }
  }

  // Prints and returns the statistics
  std::cout << "    " << passed << " test(s) passed" << std::endl;
  std::cout << "    " << errors << " test(s) failed" << std::endl;
  std::cout << std::endl;
  return errors;
}

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

// Main function (not within the clblast namespace)
int main(int argc, char *argv[]) {
  auto errors = size_t{0};
  errors += clblast::RunRetrieveParametersTests<float>(argc, argv, false, "SGEMM");
  errors += clblast::RunRetrieveParametersTests<clblast::float2>(argc, argv, true, "CGEMM");
  if (errors > 0) { return 1; } else { return 0; }
}

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