#include <dmlc/registry.h>
#include <xgboost/context.h>
#include <xgboost/metric.h>
#include "metric_common.h"
namespace xgboost {
template <typename MetricRegistry>
Metric* CreateMetricImpl(const std::string& name) {
std::string buf = name;
std::string prefix = name;
const char* param;
auto pos = buf.find('@');
if (pos == std::string::npos) {
if (!buf.empty() && buf.back() == '-') {
prefix = buf.substr(0, buf.length() - 1); param = "-";
} else {
prefix = buf;
param = nullptr;
}
auto *e = ::dmlc::Registry<MetricRegistry>::Get()->Find(prefix.c_str());
if (e == nullptr) {
return nullptr;
}
auto p_metric = (e->body)(param);
return p_metric;
} else {
std::string prefix = buf.substr(0, pos);
auto *e = ::dmlc::Registry<MetricRegistry>::Get()->Find(prefix.c_str());
if (e == nullptr) {
return nullptr;
}
auto p_metric = (e->body)(buf.substr(pos + 1, buf.length()).c_str());
return p_metric;
}
}
Metric *
Metric::Create(const std::string& name, Context const* ctx) {
auto metric = CreateMetricImpl<MetricReg>(name);
if (metric == nullptr) {
LOG(FATAL) << "Unknown metric function " << name;
}
metric->ctx_ = ctx;
return metric;
}
}
namespace dmlc {
DMLC_REGISTRY_ENABLE(::xgboost::MetricReg);
}
namespace xgboost::metric {
DMLC_REGISTRY_LINK_TAG(auc);
DMLC_REGISTRY_LINK_TAG(elementwise_metric);
DMLC_REGISTRY_LINK_TAG(multiclass_metric);
DMLC_REGISTRY_LINK_TAG(survival_metric);
DMLC_REGISTRY_LINK_TAG(rank_metric);
#ifdef XGBOOST_USE_CUDA
DMLC_REGISTRY_LINK_TAG(auc_gpu);
DMLC_REGISTRY_LINK_TAG(rank_metric_gpu);
#endif
}