Class BatchExecutionOptions
- Namespace
- Orleans.GpuBridge.Abstractions.Providers.Execution.Parameters
- Assembly
- Orleans.GpuBridge.Abstractions.dll
Options for batch execution
public sealed record BatchExecutionOptions : IEquatable<BatchExecutionOptions>
- Inheritance
-
BatchExecutionOptions
- Implements
- Inherited Members
Constructors
BatchExecutionOptions(bool, int, bool, bool)
Options for batch execution
public BatchExecutionOptions(bool ExecuteInParallel = false, int MaxParallelism = 4, bool StopOnFirstError = true, bool EnableProfiling = false)
Parameters
Properties
EnableProfiling
public bool EnableProfiling { get; init; }
Property Value
ExecuteInParallel
public bool ExecuteInParallel { get; init; }
Property Value
MaxParallelism
public int MaxParallelism { get; init; }
Property Value
StopOnFirstError
public bool StopOnFirstError { get; init; }