1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//! Configuration for batch submission behavior.
/// Configuration for batch submission behavior.
///
/// Controls how batches are processed and submitted to the kernel, allowing
/// fine-tuning of performance and error handling characteristics. Different
/// configurations are suitable for different use cases and performance requirements.
///
/// # Fields
///
/// - `fail_fast`: Controls whether to stop processing when an operation fails
/// - `max_batch_size`: Maximum number of operations in a single batch
/// - `enforce_dependencies`: Whether to respect operation dependency ordering
///
/// # Examples
///
/// ## Default Configuration
/// ```rust
/// # use safer_ring::ring::BatchConfig;
/// let config = BatchConfig::default();
/// assert!(!config.fail_fast);
/// assert_eq!(config.max_batch_size, 256);
/// assert!(config.enforce_dependencies);
/// ```
///
/// ## High-throughput Configuration
/// ```rust
/// # use safer_ring::ring::BatchConfig;
/// let config = BatchConfig {
/// fail_fast: false, // Continue on errors for maximum throughput
/// max_batch_size: 512, // Larger batches for efficiency
/// enforce_dependencies: false, // Skip dependency checks for speed
/// };
/// ```
///
/// ## Strict Error Handling Configuration
/// ```rust
/// # use safer_ring::ring::BatchConfig;
/// let config = BatchConfig {
/// fail_fast: true, // Stop immediately on any error
/// max_batch_size: 64, // Smaller batches for quick error detection
/// enforce_dependencies: true, // Strict ordering guarantees
/// };
/// ```