Table of Contents

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

ExecuteInParallel bool
MaxParallelism int
StopOnFirstError bool
EnableProfiling bool

Properties

EnableProfiling

public bool EnableProfiling { get; init; }

Property Value

bool

ExecuteInParallel

public bool ExecuteInParallel { get; init; }

Property Value

bool

MaxParallelism

public int MaxParallelism { get; init; }

Property Value

int

StopOnFirstError

public bool StopOnFirstError { get; init; }

Property Value

bool