// ================================================================================================= // 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 Database class, providing a static variable holding the actual database // information. The class also provides utility functions to search the database and to access a // found entry by parameter-key. The database itself is filled in the corresponding source-file and // partially also by the database/xxxxx.h files, in which kernel-specific parameters are found. // // ================================================================================================= #ifndef CLBLAST_DATABASE_H_ #define CLBLAST_DATABASE_H_ #include #include #include #include "utilities/utilities.hpp" namespace clblast { // ================================================================================================= // A special namespace to hold all the global constant variables (including the database entries) namespace database { // The OpenCL device types const std::string kDeviceTypeCPU = "CPU"; const std::string kDeviceTypeGPU = "GPU"; const std::string kDeviceTypeAccelerator = "accelerator"; const std::string kDeviceTypeAll = "default"; } // namespace database // ================================================================================================= // See comment at top of file for a description of the class class Database { public: // Type alias for the database parameters using Parameters = std::unordered_map; using ParametersPtr = const Parameters*; // Structures for content inside the database struct DatabaseDevice { std::string name; Parameters parameters; }; struct DatabaseVendor { std::string type; std::string name; std::vector devices; }; struct DatabaseEntry { std::string kernel; Precision precision; std::vector vendors; }; // The OpenCL device vendors static const std::string kDeviceVendorAll; // Alternative names for some OpenCL vendors static const std::unordered_map kVendorNames; // The database consists of separate database entries, stored together in a vector static const std::vector database; Database() = default; // The constructor with a user-provided database overlay (potentially an empty vector) explicit Database(const Device &device, const std::string &kernel_name, const Precision precision, const std::vector &overlay); // Accessor of values by key size_t operator[](const std::string &key) const { return parameters_->find(key)->second; } bool exists(const std::string &key) const { return (parameters_->count(key) == 1); } // Obtain a list of OpenCL pre-processor defines based on the parameters std::string GetDefines() const; // Retrieves the names of all the parameters std::vector GetParameterNames() const; private: // Search method for a specified database, returning pointer (possibly a nullptr) ParametersPtr Search(const std::string &this_kernel, const std::string &this_type, const std::string &this_vendor, const std::string &this_device, const Precision this_precision, const std::vector &db) const; // Found parameters suitable for this device/kernel std::shared_ptr parameters_; }; // ================================================================================================= // Multiple databases together in a map class Databases { public: explicit Databases(const std::vector &kernel_names): kernel_names_(kernel_names) { } // Database accessor Database& operator()(const std::string &kernel_name) { return databases_[kernel_name]; } // Retrieves a parameter from the database size_t operator[](const std::string &key) const { for (const auto &kernel_name : kernel_names_) { const auto &kernel_db = databases_.find(kernel_name)->second; if (kernel_db.exists(key)) { return kernel_db[key]; } } throw RuntimeErrorCode(StatusCode::kDatabaseError); } private: const std::vector kernel_names_; std::unordered_map databases_; }; // ================================================================================================= } // namespace clblast // CLBLAST_DATABASE_H_ #endif