Method and Description |
---|
org.bytedeco.onnxruntime.TensorTypeAndShapeInfoImpl.GetDimensions(long[], long) |
org.bytedeco.onnxruntime.ConstTensorTypeAndShapeInfo.GetDimensions(long[], long) |
org.bytedeco.onnxruntime.TensorTypeAndShapeInfoImpl.GetDimensions(LongBuffer, long) |
org.bytedeco.onnxruntime.ConstTensorTypeAndShapeInfo.GetDimensions(LongBuffer, long) |
org.bytedeco.onnxruntime.TensorTypeAndShapeInfoImpl.GetDimensions(LongPointer, long) |
org.bytedeco.onnxruntime.ConstTensorTypeAndShapeInfo.GetDimensions(LongPointer, long) |
org.bytedeco.onnxruntime.OrtApi.RegisterCustomOpsLibrary(OrtSessionOptions, BytePointer, PointerPointer)
Use OrtApi::RegisterCustomOpsLibrary_V2.
Registers custom ops from a shared library.
Loads a shared library (dll on windows, so on linux, etc) named 'library_path' and looks for this entry point:
OrtStatus* RegisterCustomOps(OrtSessionOptions * options, const OrtApiBase* api);
It then passes in the provided session options to this function along with the api base.
The handle to the loaded library is returned in library_handle. It can be freed by the caller after all sessions using the passed in
session options are destroyed, or if an error occurs and it is non null.
|
Copyright © 2024. All rights reserved.