Class OrtApiBase

java.lang.Object
smile.onnx.foreign.OrtApiBase

public class OrtApiBase extends Object
struct OrtApiBase {
    const OrtApi *(*GetApi)(uint32_t);
    const char *(*GetVersionString)(void);
}
  • Method Details

    • layout

      public static final GroupLayout layout()
      The layout of this struct
    • GetApi$layout

      public static final AddressLayout GetApi$layout()
      Layout for field:
      const OrtApi *(*GetApi)(uint32_t)
      
    • GetApi$offset

      public static final long GetApi$offset()
      Offset for field:
      const OrtApi *(*GetApi)(uint32_t)
      
    • GetApi

      public static MemorySegment GetApi(MemorySegment struct)
      Getter for field:
      const OrtApi *(*GetApi)(uint32_t)
      
    • GetApi

      public static void GetApi(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      const OrtApi *(*GetApi)(uint32_t)
      
    • GetVersionString$layout

      public static final AddressLayout GetVersionString$layout()
      Layout for field:
      const char *(*GetVersionString)(void)
      
    • GetVersionString$offset

      public static final long GetVersionString$offset()
      Offset for field:
      const char *(*GetVersionString)(void)
      
    • GetVersionString

      public static MemorySegment GetVersionString(MemorySegment struct)
      Getter for field:
      const char *(*GetVersionString)(void)
      
    • GetVersionString

      public static void GetVersionString(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      const char *(*GetVersionString)(void)
      
    • asSlice

      public static MemorySegment asSlice(MemorySegment array, long index)
      Obtains a slice of arrayParam which selects the array element at index. The returned segment has address arrayParam.address() + index * layout().byteSize()
    • sizeof

      public static long sizeof()
      The size (in bytes) of this struct
    • allocate

      public static MemorySegment allocate(SegmentAllocator allocator)
      Allocate a segment of size layout().byteSize() using allocator
    • allocateArray

      public static MemorySegment allocateArray(long elementCount, SegmentAllocator allocator)
      Allocate an array of size elementCount using allocator. The returned segment has size elementCount * layout().byteSize().
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size layout().byteSize()
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size elementCount * layout().byteSize()