fix the ORT API version in header files. (#334)
Co-authored-by: Changming Sun <chasun@microsoft.com>
This commit is contained in:
Родитель
230f0201d1
Коммит
1d8d4b1fa4
|
@ -99,7 +99,7 @@ struct CustomOpApi {
|
|||
template <typename TOp, typename TKernel>
|
||||
struct CustomOpBase : OrtCustomOp {
|
||||
CustomOpBase() {
|
||||
OrtCustomOp::version = ORT_API_VERSION;
|
||||
OrtCustomOp::version = 10; // The minimum ORT version supported
|
||||
OrtCustomOp::CreateKernel = [](const OrtCustomOp* this_, const OrtApi* api, const OrtKernelInfo* info) { return static_cast<const TOp*>(this_)->CreateKernel(*api, info); };
|
||||
OrtCustomOp::GetName = [](const OrtCustomOp* this_) { return static_cast<const TOp*>(this_)->GetName(); };
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче