blob: e241f4c3ccf95cb88d3de702785c95df928b2e5d [file] [log] [blame]
#include "custom_backend.h"
namespace torch {
namespace custom_backend {
namespace {
constexpr auto kBackendName = "custom_backend";
static auto cls = torch::jit::backend<CustomBackend>(kBackendName);
}
std::string getBackendName() {
return std::string(kBackendName);
}
}
}