v2026.6.4
All Bundles
Bundle ONNX Runtime inference library for running pre-trained models. Supports object detection (YOLO), image classification (ResNet), segmentation (DeepLab), pose estimation (OpenPose), face recognition, and Phi-3 text generation. Compile with -lib onnx.

OnnxRuntime

ONNX runtime utilities for querying execution providers.

Example

providers := OnnxRuntime->GetProviders();
each(p in providers) {
  p->PrintLine();
};

Operations

GetProviders # function

Gets available ONNX execution providers (e.g., "DML", "CUDA", "CPU")

function : GetProviders() ~ String[]

Return

TypeDescription
Stringarray of provider name strings