2015-08-06 19:34:26 -07:00
|
|
|
#include "isaac/driver/device.h"
|
2015-08-12 00:46:51 -07:00
|
|
|
#include "isaac/profiles/profiles.h"
|
2015-08-06 19:34:26 -07:00
|
|
|
|
|
|
|
#include "presets/broadwell.hpp"
|
|
|
|
|
|
|
|
namespace isaac
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
#define DATABASE_ENTRY(VENDOR, ARCHITECTURE, STRING) \
|
|
|
|
{std::make_tuple(driver::Device::Vendor::VENDOR, driver::Device::Architecture::ARCHITECTURE), STRING}
|
|
|
|
|
2015-08-12 00:46:51 -07:00
|
|
|
const std::map<std::tuple<driver::Device::Vendor, driver::Device::Architecture> , const char *> profiles::presets_ =
|
2015-08-06 19:34:26 -07:00
|
|
|
{ DATABASE_ENTRY(INTEL, BROADWELL, presets::broadwell) };
|
|
|
|
|
|
|
|
|
|
|
|
#undef DATABASE_ENTRY
|
|
|
|
|
|
|
|
}
|