20 lines
361 B
C++
20 lines
361 B
C++
#pragma once
|
|
#include "KplusInferencer.h"
|
|
#include "KplusPlatform.h"
|
|
|
|
namespace dynasty {
|
|
namespace inferencer {
|
|
namespace kplus {
|
|
|
|
template <typename T>
|
|
class Inferencer : public InferencerImpl<T> {
|
|
public:
|
|
static std::shared_ptr<typename InferencerImpl<T>::Builder> GetBuilder();
|
|
static std::shared_ptr<KplusPlatform> GetKplusPlatform();
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|