Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update OrtEnv class documentation #14650

Merged
merged 2 commits into from
Feb 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion csharp/src/Microsoft.ML.OnnxRuntime/OnnxRuntime.shared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ public enum OrtLanguageProjection
}

/// <summary>
/// This class initializes the process-global ONNX Runtime environment instance (OrtEnv)
/// This class initializes the process-global ONNX Runtime environment instance (OrtEnv).
/// The singleton class OrtEnv contains the process-global ONNX Runtime environment.
/// It sets up logging, creates system wide thread-pools (if Thread Pool options are provided)
/// and other necessary things for OnnxRuntime to function. Create or access OrtEnv by calling
/// the Instance() method. Call this method before doing anything else in your application.
/// </summary>
public sealed class OrtEnv : SafeHandle
{
Expand Down