torsh-distributed 0.1.2

Distributed training and inference for ToRSh
Documentation
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
//! Distributed backend implementations
//!
//! This module provides a modern, async-first backend abstraction for distributed training
//! with support for multiple communication backends and advanced features.

use crate::{TorshDistributedError, TorshResult};
use async_trait::async_trait;
use std::any::Any;
use std::collections::HashMap;
use std::fmt;
use std::time::Duration;

/// Reduce operation types for collective operations
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ReduceOp {
    /// Sum all values across processes
    Sum,
    /// Multiply all values across processes
    Product,
    /// Find minimum value across processes
    Min,
    /// Find maximum value across processes
    Max,
    /// Bitwise AND across processes
    Band,
    /// Bitwise OR across processes
    Bor,
    /// Bitwise XOR across processes
    Bxor,
    /// Average values across processes
    Mean,
}

impl fmt::Display for ReduceOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            ReduceOp::Sum => write!(f, "sum"),
            ReduceOp::Product => write!(f, "product"),
            ReduceOp::Min => write!(f, "min"),
            ReduceOp::Max => write!(f, "max"),
            ReduceOp::Band => write!(f, "bitwise_and"),
            ReduceOp::Bor => write!(f, "bitwise_or"),
            ReduceOp::Bxor => write!(f, "bitwise_xor"),
            ReduceOp::Mean => write!(f, "mean"),
        }
    }
}

/// Backend types for distributed training
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum BackendType {
    /// NVIDIA Collective Communication Library (GPU)
    Nccl,
    /// Message Passing Interface (CPU/GPU)
    Mpi,
    /// Facebook Gloo (CPU)
    Gloo,
    /// Custom backend implementation
    Custom(&'static str),
}

impl fmt::Display for BackendType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            BackendType::Nccl => write!(f, "nccl"),
            BackendType::Mpi => write!(f, "mpi"),
            BackendType::Gloo => write!(f, "gloo"),
            BackendType::Custom(name) => write!(f, "custom:{}", name),
        }
    }
}

/// Backend capabilities and features
#[derive(Debug, Clone)]
pub struct BackendCapabilities {
    /// Supports asynchronous operations
    pub async_operations: bool,
    /// Supports GPU tensors
    pub gpu_support: bool,
    /// Supports point-to-point communication
    pub p2p_communication: bool,
    /// Supports custom reduce operations
    pub custom_reduce_ops: bool,
    /// Maximum tensor size supported
    pub max_tensor_size: Option<usize>,
    /// Supported data types
    pub supported_dtypes: Vec<String>,
}

impl Default for BackendCapabilities {
    fn default() -> Self {
        Self {
            async_operations: true,
            gpu_support: false,
            p2p_communication: true,
            custom_reduce_ops: false,
            max_tensor_size: None,
            supported_dtypes: vec![
                "f32".to_string(),
                "f64".to_string(),
                "i32".to_string(),
                "i64".to_string(),
            ],
        }
    }
}

/// Backend configuration options
#[derive(Debug, Clone)]
pub struct BackendConfig {
    /// Network timeout for operations
    pub timeout: Duration,
    /// Enable compression for communication
    pub enable_compression: bool,
    /// Custom configuration options
    pub custom_options: HashMap<String, String>,
    /// Maximum retries for failed operations
    pub max_retries: u32,
    /// Backoff multiplier for retries
    pub retry_backoff: f64,
}

impl Default for BackendConfig {
    fn default() -> Self {
        Self {
            timeout: Duration::from_secs(30),
            enable_compression: false,
            custom_options: HashMap::new(),
            max_retries: 3,
            retry_backoff: 2.0,
        }
    }
}

/// Backend status information
#[derive(Debug, Clone)]
pub struct BackendStatus {
    /// Whether the backend is initialized
    pub initialized: bool,
    /// Whether the backend is healthy
    pub healthy: bool,
    /// Number of active operations
    pub active_operations: u32,
    /// Total operations performed
    pub total_operations: u64,
    /// Number of failed operations
    pub failed_operations: u64,
    /// Last error encountered
    pub last_error: Option<String>,
}

impl Default for BackendStatus {
    fn default() -> Self {
        Self {
            initialized: false,
            healthy: true,
            active_operations: 0,
            total_operations: 0,
            failed_operations: 0,
            last_error: None,
        }
    }
}

/// Modern async-first distributed backend trait
#[async_trait]
pub trait Backend: Send + Sync {
    /// Get the backend type
    fn backend_type(&self) -> BackendType;

    /// Get backend capabilities
    fn capabilities(&self) -> BackendCapabilities;

    /// Initialize the backend with configuration
    async fn init(&mut self, config: BackendConfig) -> TorshResult<()>;

    /// Cleanup the backend resources
    async fn cleanup(&mut self) -> TorshResult<()>;

    /// Get current backend status
    fn status(&self) -> BackendStatus;

    /// Check if backend is ready for operations
    fn is_ready(&self) -> bool {
        let status = self.status();
        status.initialized && status.healthy
    }

    /// Get rank of current process
    fn rank(&self) -> u32;

    /// Get world size (total number of processes)
    fn world_size(&self) -> u32;

    /// Barrier synchronization across all processes
    async fn barrier(&mut self) -> TorshResult<()>;

    /// Barrier synchronization with timeout
    async fn barrier_with_timeout(&mut self, timeout: Duration) -> TorshResult<()> {
        tokio::time::timeout(timeout, self.barrier())
            .await
            .map_err(|_| TorshDistributedError::operation_timeout("barrier", timeout.as_secs()))?
    }

    /// All-reduce operation on tensor
    async fn all_reduce(
        &mut self,
        tensor: &mut (dyn Any + Send + Sync),
        op: ReduceOp,
    ) -> TorshResult<()>;

    /// All-gather operation on tensor
    async fn all_gather(
        &mut self,
        tensor: &(dyn Any + Send + Sync),
    ) -> TorshResult<Box<dyn Any + Send>>;

    /// Broadcast operation on tensor
    async fn broadcast(
        &mut self,
        tensor: &mut (dyn Any + Send + Sync),
        root: u32,
    ) -> TorshResult<()>;

    /// Point-to-point send operation
    async fn send(
        &mut self,
        tensor: &(dyn Any + Send + Sync),
        dst: u32,
        tag: u32,
    ) -> TorshResult<()>;

    /// Point-to-point receive operation
    async fn recv(&mut self, src: u32, tag: u32) -> TorshResult<Box<dyn Any + Send>>;

    /// Health check for the backend
    async fn health_check(&mut self) -> TorshResult<bool> {
        // Default implementation: check if barrier works
        match tokio::time::timeout(Duration::from_secs(5), self.barrier()).await {
            Ok(Ok(())) => Ok(true),
            _ => Ok(false),
        }
    }

    /// Get backend-specific metrics
    fn get_metrics(&self) -> HashMap<String, f64> {
        HashMap::new() // Default: no metrics
    }

    /// Downcast to any type for backend-specific operations
    fn as_any(&self) -> &dyn std::any::Any;

    /// Downcast to mutable any type for backend-specific operations
    fn as_any_mut(&mut self) -> &mut dyn std::any::Any;
}

/// Factory trait for creating backend instances
pub trait BackendFactory: Send + Sync {
    /// Create a new backend instance
    fn create_backend(
        &self,
        rank: u32,
        world_size: u32,
        master_addr: &str,
        master_port: u16,
    ) -> TorshResult<Box<dyn Backend>>;

    /// Get the backend type this factory creates
    fn backend_type(&self) -> BackendType;

    /// Check if this backend is available on the current system
    fn is_available(&self) -> bool;

    /// Get default configuration for this backend
    fn default_config(&self) -> BackendConfig {
        BackendConfig::default()
    }
}

/// Mock backend for testing and development
#[derive(Debug)]
pub struct MockBackend {
    rank: u32,
    world_size: u32,
    status: BackendStatus,
    config: Option<BackendConfig>,
    metrics: HashMap<String, f64>,
    /// The backend type this mock is pretending to be
    backend_type: BackendType,
}

impl MockBackend {
    pub fn new(rank: u32, world_size: u32) -> Self {
        Self {
            rank,
            world_size,
            status: BackendStatus::default(),
            config: None,
            metrics: HashMap::new(),
            backend_type: BackendType::Gloo,
        }
    }

    /// Create a mock backend that reports itself as the given backend type
    pub fn with_backend_type(rank: u32, world_size: u32, backend_type: BackendType) -> Self {
        Self {
            rank,
            world_size,
            status: BackendStatus::default(),
            config: None,
            metrics: HashMap::new(),
            backend_type,
        }
    }

    /// Simulate operation latency for realistic testing
    async fn simulate_latency(&self) {
        let latency_ms = 1 + (self.rank() % 5); // 1-5ms based on rank
        tokio::time::sleep(Duration::from_millis(latency_ms as u64)).await;
    }

    /// Update operation metrics
    fn update_metrics(&mut self, operation: &str, success: bool) {
        self.status.total_operations += 1;
        if success {
            let key = format!("{}_success_count", operation);
            *self.metrics.entry(key).or_insert(0.0) += 1.0;
        } else {
            self.status.failed_operations += 1;
            let key = format!("{}_failure_count", operation);
            *self.metrics.entry(key).or_insert(0.0) += 1.0;
        }
    }
}

#[async_trait]
impl Backend for MockBackend {
    fn backend_type(&self) -> BackendType {
        self.backend_type
    }

    fn capabilities(&self) -> BackendCapabilities {
        BackendCapabilities {
            async_operations: true,
            gpu_support: false,
            p2p_communication: true,
            custom_reduce_ops: false,
            max_tensor_size: Some(1_000_000_000), // 1GB
            supported_dtypes: vec![
                "f32".to_string(),
                "f64".to_string(),
                "i32".to_string(),
                "i64".to_string(),
                "u32".to_string(),
                "u64".to_string(),
            ],
        }
    }

    async fn init(&mut self, config: BackendConfig) -> TorshResult<()> {
        if self.status.initialized {
            return Ok(());
        }

        self.config = Some(config);
        self.status.initialized = true;
        self.status.healthy = true;

        // Simulate initialization time
        self.simulate_latency().await;

        self.update_metrics("init", true);
        Ok(())
    }

    async fn cleanup(&mut self) -> TorshResult<()> {
        if !self.status.initialized {
            return Ok(());
        }

        self.status.initialized = false;
        self.status.active_operations = 0;
        self.config = None;

        self.simulate_latency().await;
        self.update_metrics("cleanup", true);
        Ok(())
    }

    fn status(&self) -> BackendStatus {
        self.status.clone()
    }

    fn rank(&self) -> u32 {
        self.rank
    }

    fn world_size(&self) -> u32 {
        self.world_size
    }

    async fn barrier(&mut self) -> TorshResult<()> {
        if !self.status.initialized {
            return Err(TorshDistributedError::BackendNotInitialized);
        }

        self.status.active_operations += 1;

        // Simulate barrier synchronization time
        self.simulate_latency().await;

        self.status.active_operations -= 1;
        self.update_metrics("barrier", true);
        Ok(())
    }

    async fn all_reduce(
        &mut self,
        _tensor: &mut (dyn Any + Send + Sync),
        op: ReduceOp,
    ) -> TorshResult<()> {
        if !self.status.initialized {
            return Err(TorshDistributedError::BackendNotInitialized);
        }

        self.status.active_operations += 1;

        // Simulate all-reduce computation and communication time based on tensor type
        let base_latency = 1; // Base latency for mock operation
        tokio::time::sleep(Duration::from_millis(base_latency)).await;

        // Mock operation: For testing, just simulate processing
        // In a real implementation, this would perform actual reduction
        match op {
            ReduceOp::Sum
            | ReduceOp::Mean
            | ReduceOp::Product
            | ReduceOp::Min
            | ReduceOp::Max
            | ReduceOp::Band
            | ReduceOp::Bor
            | ReduceOp::Bxor => {
                // Simulate reduction operation processing time
                tokio::time::sleep(Duration::from_millis(1)).await;
            }
        }

        self.status.active_operations -= 1;
        self.update_metrics("all_reduce", true);
        Ok(())
    }

    async fn all_gather(
        &mut self,
        _tensor: &(dyn Any + Send + Sync),
    ) -> TorshResult<Box<dyn Any + Send>> {
        if !self.status.initialized {
            return Err(TorshDistributedError::BackendNotInitialized);
        }

        self.status.active_operations += 1;

        // Simulate all-gather time
        self.simulate_latency().await;

        // Mock implementation: return empty vector wrapped in Box<dyn Any>
        // In a real implementation, this would gather tensors from all ranks
        let result: Vec<u8> = Vec::new(); // Placeholder result

        self.status.active_operations -= 1;
        self.update_metrics("all_gather", true);
        Ok(Box::new(result))
    }

    async fn broadcast(
        &mut self,
        _tensor: &mut (dyn Any + Send + Sync),
        root: u32,
    ) -> TorshResult<()> {
        if !self.status.initialized {
            return Err(TorshDistributedError::BackendNotInitialized);
        }

        if root >= self.world_size() {
            return Err(TorshDistributedError::RankOutOfBounds {
                rank: root,
                world_size: self.world_size(),
            });
        }

        self.status.active_operations += 1;

        // Simulate broadcast time
        self.simulate_latency().await;

        // Mock implementation: tensor remains unchanged (assumes root sent its data)

        self.status.active_operations -= 1;
        self.update_metrics("broadcast", true);
        Ok(())
    }

    async fn send(
        &mut self,
        _tensor: &(dyn Any + Send + Sync),
        dst: u32,
        _tag: u32,
    ) -> TorshResult<()> {
        if !self.status.initialized {
            return Err(TorshDistributedError::BackendNotInitialized);
        }

        if dst >= self.world_size() {
            return Err(TorshDistributedError::RankOutOfBounds {
                rank: dst,
                world_size: self.world_size(),
            });
        }

        self.status.active_operations += 1;

        // Simulate send time
        self.simulate_latency().await;

        self.status.active_operations -= 1;
        self.update_metrics("send", true);
        Ok(())
    }

    async fn recv(&mut self, src: u32, _tag: u32) -> TorshResult<Box<dyn Any + Send>> {
        if !self.status.initialized {
            return Err(TorshDistributedError::BackendNotInitialized);
        }

        if src >= self.world_size() {
            return Err(TorshDistributedError::RankOutOfBounds {
                rank: src,
                world_size: self.world_size(),
            });
        }

        self.status.active_operations += 1;

        // Simulate receive time
        self.simulate_latency().await;

        // Mock implementation: create a dummy tensor
        // In real implementation, this would receive actual data
        let dummy_data: Vec<u8> = Vec::new(); // Placeholder received data

        self.status.active_operations -= 1;
        self.update_metrics("recv", true);
        Ok(Box::new(dummy_data))
    }

    fn get_metrics(&self) -> HashMap<String, f64> {
        let mut metrics = self.metrics.clone();
        metrics.insert(
            "total_operations".to_string(),
            self.status.total_operations as f64,
        );
        metrics.insert(
            "failed_operations".to_string(),
            self.status.failed_operations as f64,
        );
        metrics.insert(
            "active_operations".to_string(),
            self.status.active_operations as f64,
        );

        if self.status.total_operations > 0 {
            let success_rate = (self.status.total_operations - self.status.failed_operations)
                as f64
                / self.status.total_operations as f64;
            metrics.insert("success_rate".to_string(), success_rate);
        }

        metrics
    }

    fn as_any(&self) -> &dyn std::any::Any {
        self
    }

    fn as_any_mut(&mut self) -> &mut dyn std::any::Any {
        self
    }
}

/// Factory for creating MockBackend instances
pub struct MockBackendFactory;

impl BackendFactory for MockBackendFactory {
    fn create_backend(
        &self,
        rank: u32,
        world_size: u32,
        _master_addr: &str,
        _master_port: u16,
    ) -> TorshResult<Box<dyn Backend>> {
        Ok(Box::new(MockBackend::new(rank, world_size)))
    }

    fn backend_type(&self) -> BackendType {
        BackendType::Gloo
    }

    fn is_available(&self) -> bool {
        true // Mock backend is always available
    }

    fn default_config(&self) -> BackendConfig {
        BackendConfig {
            timeout: Duration::from_secs(10),
            enable_compression: false,
            custom_options: HashMap::new(),
            max_retries: 2,
            retry_backoff: 1.5,
        }
    }
}

#[cfg(feature = "mpi")]
mod mpi_backend {
    use super::*;
    use mpi::topology::Communicator;
    use tracing::info;

    pub struct MpiBackend {
        world: mpi::topology::SimpleCommunicator,
        initialized: bool,
    }

    // SAFETY: MPI communicators are not inherently thread-safe, but we ensure:
    // 1. All MPI operations are protected by async/await boundaries
    // 2. No concurrent access to the same communicator from multiple threads
    // 3. MPI_THREAD_SERIALIZED or higher thread support is assumed
    // Users must ensure MPI is initialized with appropriate thread support level
    unsafe impl Send for MpiBackend {}
    unsafe impl Sync for MpiBackend {}

    impl MpiBackend {
        pub fn new() -> TorshResult<Self> {
            let universe = mpi::initialize().ok_or_else(|| {
                TorshDistributedError::backend_error("MPI", "Failed to initialize MPI".to_string())
            })?;

            Ok(Self {
                world: universe.world(),
                initialized: false,
            })
        }
    }

    #[async_trait]
    impl Backend for MpiBackend {
        fn backend_type(&self) -> BackendType {
            BackendType::Mpi
        }

        async fn init(&mut self, _config: BackendConfig) -> TorshResult<()> {
            self.initialized = true;
            Ok(())
        }

        async fn cleanup(&mut self) -> TorshResult<()> {
            self.initialized = false;
            Ok(())
        }

        fn is_ready(&self) -> bool {
            self.initialized
        }

        fn rank(&self) -> u32 {
            self.world.rank() as u32
        }

        fn world_size(&self) -> u32 {
            self.world.size() as u32
        }

        fn capabilities(&self) -> BackendCapabilities {
            BackendCapabilities {
                async_operations: true,
                gpu_support: false,
                p2p_communication: true,
                custom_reduce_ops: true,
                max_tensor_size: None,
                supported_dtypes: vec![
                    "f32".to_string(),
                    "f64".to_string(),
                    "i32".to_string(),
                    "i64".to_string(),
                ],
            }
        }

        fn status(&self) -> BackendStatus {
            BackendStatus {
                initialized: self.initialized,
                healthy: true,
                active_operations: 0,
                total_operations: 0,
                failed_operations: 0,
                last_error: None,
            }
        }

        async fn barrier(&mut self) -> TorshResult<()> {
            if !self.initialized {
                return Err(TorshDistributedError::backend_error(
                    "MPI",
                    "Backend not initialized",
                ));
            }

            // TODO: MPI barrier - method not available in current mpi crate version
            // self.world.barrier();
            info!("MPI barrier (mock - not implemented)");
            Ok(())
        }

        async fn all_reduce(
            &mut self,
            _tensor: &mut (dyn Any + Send + Sync),
            _op: ReduceOp,
        ) -> TorshResult<()> {
            if !self.initialized {
                return Err(TorshDistributedError::backend_error(
                    "MPI",
                    "Backend not initialized",
                ));
            }

            // Enhanced MPI all-reduce simulation
            // In production, this would call MPI_Allreduce
            info!(
                " MPI All-Reduce: op={:?}, rank={}, world_size={}",
                _op,
                self.rank(),
                self.world_size()
            );

            // Simulate MPI all-reduce timing based on algorithm and data size
            // MPI typically uses optimal algorithms based on message size and world size
            let simulated_elements = 1000; // Mock tensor size
            let element_size = 4; // 4 bytes for f32
            let message_size = simulated_elements * element_size;

            // MPI all-reduce timing depends on algorithm choice
            let timing_us = if message_size < 2048 {
                // Small messages: use recursive doubling (low latency)
                let steps = (self.world_size() as f32).log2().ceil() as u32;
                steps as u64 * 5 + message_size as u64 / 1000
            } else if message_size < 65536 {
                // Medium messages: use reduce-scatter + all-gather
                let bandwidth_gbps = 10.0; // 10 Gbps network
                let latency_us = 20;
                let transfer_time = (message_size as f64 * 8.0) / (bandwidth_gbps * 1e9) * 1e6;
                latency_us + transfer_time as u64
            } else {
                // Large messages: use ring algorithm
                let bandwidth_gbps = 10.0;
                let ring_steps = (self.world_size() - 1) * 2; // reduce-scatter + all-gather phases
                let transfer_time =
                    (message_size as f64 * 8.0 * ring_steps as f64) / (bandwidth_gbps * 1e9) * 1e6;
                transfer_time as u64
            };

            // Simulate network delay
            tokio::time::sleep(tokio::time::Duration::from_micros(timing_us)).await;

            info!("    MPI All-Reduce completed in {}μs", timing_us);
            Ok(())
        }

        async fn all_gather(
            &mut self,
            _tensor: &(dyn Any + Send + Sync),
        ) -> TorshResult<Box<dyn Any + Send>> {
            if !self.initialized {
                return Err(TorshDistributedError::backend_error(
                    "MPI",
                    "Backend not initialized",
                ));
            }

            // Enhanced MPI all-gather simulation
            // In production, this would call MPI_Allgather
            info!(
                " MPI All-Gather: rank={}, world_size={}",
                self.rank(),
                self.world_size()
            );

            // Simulate MPI all-gather timing
            let simulated_elements = 1000; // Mock tensor size per rank
            let element_size = 4; // 4 bytes for f32
            let message_size_per_rank = simulated_elements * element_size;
            let total_message_size = message_size_per_rank * self.world_size() as usize;

            // MPI all-gather typically uses ring or tree algorithms
            let timing_us = if message_size_per_rank < 1024 {
                // Small messages: use tree algorithm (latency-optimal)
                let tree_depth = (self.world_size() as f32).log2().ceil() as u32;
                tree_depth as u64 * 8 + message_size_per_rank as u64 / 500
            } else {
                // Large messages: use ring algorithm (bandwidth-optimal)
                let bandwidth_gbps = 10.0; // 10 Gbps network
                let ring_phases = self.world_size() - 1;
                let transfer_time =
                    (total_message_size as f64 * 8.0) / (bandwidth_gbps * 1e9) * 1e6;
                let latency = ring_phases as u64 * 15; // Latency per phase
                latency + transfer_time as u64
            };

            // Simulate the operation
            tokio::time::sleep(tokio::time::Duration::from_micros(timing_us)).await;

            info!("    MPI All-Gather completed in {}μs", timing_us);

            // Return a mock gathered tensor (in practice, would be actual gathered data)
            let mock_result = Box::new(vec![0u8; total_message_size]) as Box<dyn Any + Send>;
            Ok(mock_result)
        }

        async fn broadcast(
            &mut self,
            _tensor: &mut (dyn Any + Send + Sync),
            _root: u32,
        ) -> TorshResult<()> {
            if !self.initialized {
                return Err(TorshDistributedError::backend_error(
                    "MPI",
                    "Backend not initialized",
                ));
            }

            // Enhanced MPI broadcast simulation
            // In production, this would call MPI_Bcast
            info!(
                "📤 MPI Broadcast: root={}, rank={}, world_size={}",
                _root,
                self.rank(),
                self.world_size()
            );

            // Simulate MPI broadcast timing
            let simulated_elements = 1000; // Mock tensor size
            let element_size = 4; // 4 bytes for f32
            let message_size = simulated_elements * element_size;

            // MPI broadcast typically uses tree algorithms for efficiency
            let timing_us = if message_size < 1024 {
                // Small messages: flat tree (single level broadcast)
                let latency_per_send = 5; // μs per send operation
                latency_per_send * (self.world_size() - 1) as u64
            } else if message_size < 32768 {
                // Medium messages: binary tree
                let tree_depth = (self.world_size() as f32).log2().ceil() as u32;
                let bandwidth_mbps = 1000.0; // 1 Gbps per link
                let transfer_time = (message_size as f64 * 8.0) / (bandwidth_mbps * 1e6) * 1e6;
                let tree_latency = tree_depth as u64 * 10; // Latency per tree level
                tree_latency + transfer_time as u64
            } else {
                // Large messages: pipelined binary tree
                let tree_depth = (self.world_size() as f32).log2().ceil() as u32;
                let bandwidth_gbps = 10.0; // 10 Gbps network
                let pipeline_chunks = 8; // Number of pipeline stages
                let chunk_size = message_size / pipeline_chunks;
                let chunk_transfer_time = (chunk_size as f64 * 8.0) / (bandwidth_gbps * 1e9) * 1e6;
                let pipeline_latency = tree_depth as u64 * 5; // Reduced latency due to pipelining
                pipeline_latency + chunk_transfer_time as u64 * pipeline_chunks as u64
            };

            // Only root rank initiates, others receive
            if self.rank() == _root {
                info!("    Root rank {} initiating broadcast", _root);
            } else {
                info!(
                    "   📥 Rank {} receiving broadcast from root {}",
                    self.rank(),
                    _root
                );
            }

            // Simulate the operation
            tokio::time::sleep(tokio::time::Duration::from_micros(timing_us)).await;

            info!("    MPI Broadcast completed in {}μs", timing_us);
            Ok(())
        }

        async fn send(
            &mut self,
            _tensor: &(dyn Any + Send + Sync),
            _dst: u32,
            _tag: u32,
        ) -> TorshResult<()> {
            if !self.initialized {
                return Err(TorshDistributedError::backend_error(
                    "MPI",
                    "Backend not initialized",
                ));
            }

            // Enhanced MPI send simulation (MPI_Send)
            info!(
                "📤 MPI Send: rank {} → rank {}, tag={}",
                self.rank(),
                _dst,
                _tag
            );

            // Simulate point-to-point latency and bandwidth
            let message_size = 1000 * 4; // Mock 1000 f32 elements
            let latency_us = 15; // Network latency
            let bandwidth_gbps = 25.0; // InfiniBand or high-speed network
            let transfer_time_us = (message_size as f64 * 8.0) / (bandwidth_gbps * 1e9) * 1e6;
            let total_time_us = latency_us + transfer_time_us as u64;

            tokio::time::sleep(tokio::time::Duration::from_micros(total_time_us)).await;
            info!("    MPI Send completed in {}μs", total_time_us);
            Ok(())
        }

        async fn recv(&mut self, _src: u32, _tag: u32) -> TorshResult<Box<dyn Any + Send>> {
            if !self.initialized {
                return Err(TorshDistributedError::backend_error(
                    "MPI",
                    "Backend not initialized",
                ));
            }

            // Enhanced MPI recv simulation (MPI_Recv)
            info!(
                "📥 MPI Recv: rank {} ← rank {}, tag={}",
                self.rank(),
                _src,
                _tag
            );

            // Simulate waiting and receiving
            let message_size = 1000 * 4; // Mock message size
            let latency_us = 15;
            let bandwidth_gbps = 25.0;
            let transfer_time_us = (message_size as f64 * 8.0) / (bandwidth_gbps * 1e9) * 1e6;
            let total_time_us = latency_us + transfer_time_us as u64;

            tokio::time::sleep(tokio::time::Duration::from_micros(total_time_us)).await;
            info!("    MPI Recv completed in {}μs", total_time_us);

            // Return mock received data
            let mock_data = Box::new(vec![0u8; message_size]) as Box<dyn Any + Send>;
            Ok(mock_data)
        }

        fn as_any(&self) -> &dyn std::any::Any {
            self
        }

        fn as_any_mut(&mut self) -> &mut dyn std::any::Any {
            self
        }
    }
}

#[cfg(feature = "mpi")]
pub use mpi_backend::MpiBackend;

#[cfg(feature = "nccl")]
mod nccl_backend {
    use super::*;
    use std::sync::atomic::{AtomicBool, Ordering};
    use tracing::info;

    /// NCCL backend for GPU distributed training
    ///
    /// This implementation provides the interface for NCCL-based distributed training.
    /// Currently uses mock implementations with TODOs for actual NCCL integration.
    /// Real NCCL integration would require:
    /// 1. Proper NCCL Rust bindings (currently not available on crates.io)
    /// 2. CUDA runtime integration
    /// 3. Process coordination for communicator initialization
    pub struct NcclBackend {
        rank: u32,
        world_size: u32,
        initialized: AtomicBool,
        device_id: i32,
        // TODO: Add actual NCCL communicator when bindings are available
        // comm: Option<NcclCommunicator>,
    }

    impl NcclBackend {
        pub fn new(rank: u32, world_size: u32, device_id: Option<i32>) -> TorshResult<Self> {
            let device_id = device_id.unwrap_or(rank as i32);

            // TODO: Validate CUDA device exists and is accessible

            Ok(Self {
                rank,
                world_size,
                initialized: AtomicBool::new(false),
                device_id,
            })
        }

        /// Initialize NCCL communicator
        fn init_communicator(&mut self) -> TorshResult<()> {
            // Enhanced mock NCCL initialization with realistic behavior
            // This simulates the actual NCCL initialization process:
            // 1. Setting CUDA device: cudaSetDevice(self.device_id)
            // 2. Getting unique ID from rank 0: ncclGetUniqueId()
            // 3. Broadcasting unique ID to all ranks
            // 4. Initializing communicator: ncclCommInitRank()

            info!(
                " Enhanced Mock NCCL: Initializing communicator for device {} (rank {}/{})",
                self.device_id,
                self.rank(),
                self.world_size()
            );

            // Mock validation with comprehensive checks
            if self.world_size() == 0 {
                return Err(TorshDistributedError::invalid_argument(
                    "world_size",
                    "World size must be greater than 0",
                    "world_size > 0",
                ));
            }

            if self.rank() >= self.world_size() {
                return Err(TorshDistributedError::RankOutOfBounds {
                    rank: self.rank(),
                    world_size: self.world_size(),
                });
            }

            // Simulate CUDA device setting
            info!("   📱 Mock CUDA: Setting device {}", self.device_id);

            // Simulate unique ID generation (rank 0) and broadcast
            if self.rank() == 0 {
                info!("   🔑 Mock NCCL: Generating unique communicator ID");
            }
            info!("    Mock NCCL: Broadcasting unique ID to all ranks");

            // Simulate communicator initialization
            info!(
                "   🔧 Mock NCCL: Initializing communicator for rank {}",
                self.rank()
            );

            // Simulate initialization time
            std::thread::sleep(std::time::Duration::from_millis(50));

            info!("    Mock NCCL: Communicator successfully initialized");

            Ok(())
        }

        /// Get the device ID this backend is using
        pub fn device_id(&self) -> i32 {
            self.device_id
        }

        /// Check if NCCL backend is initialized
        pub fn is_initialized(&self) -> bool {
            self.initialized.load(std::sync::atomic::Ordering::Acquire)
        }

        /// Enhanced mock NCCL all-reduce operation
        pub fn mock_all_reduce(&self, data: &[f32]) -> TorshResult<Vec<f32>> {
            if !self.is_initialized() {
                return Err(TorshDistributedError::BackendNotInitialized);
            }

            // Enhanced mock NCCL all-reduce with realistic behavior
            // This simulates: ncclAllReduce(sendbuff, recvbuff, count, datatype, op, comm, stream)

            let start_time = std::time::Instant::now();

            info!(
                " Enhanced Mock NCCL: All-reduce {} elements on device {} (rank {}/{})",
                data.len(),
                self.device_id,
                self.rank(),
                self.world_size()
            );

            // Validate input data
            if data.is_empty() {
                return Err(TorshDistributedError::invalid_argument(
                    "data",
                    "Cannot perform all-reduce on empty data",
                    "non-empty data array",
                ));
            }

            // Simulate network latency based on data size and world size
            let latency_ms = (data.len() as f64 * 0.001 + self.world_size() as f64 * 0.5).max(1.0);
            std::thread::sleep(std::time::Duration::from_millis(latency_ms as u64));

            // Enhanced mock implementation:
            // Simulate realistic all-reduce (sum followed by averaging for gradients)
            // In real distributed training, this would sum gradients across all ranks
            let sum_result: Vec<f32> = data.iter().map(|&x| x * self.world_size() as f32).collect();
            let result: Vec<f32> = sum_result
                .iter()
                .map(|&x| x / self.world_size() as f32)
                .collect();

            let duration = start_time.elapsed();
            let bandwidth_gbps = (data.len() * 4) as f64 / duration.as_secs_f64() / 1e9;

            info!(
                "    All-reduce completed in {:?} (simulated bandwidth: {:.2} GB/s)",
                duration, bandwidth_gbps
            );

            Ok(result)
        }

        /// Mock NCCL broadcast operation
        pub fn mock_broadcast(&self, data: &mut [f32], root_rank: u32) -> TorshResult<()> {
            if !self.is_initialized() {
                return Err(TorshDistributedError::BackendNotInitialized);
            }

            if root_rank >= self.world_size() {
                return Err(TorshDistributedError::RankOutOfBounds {
                    rank: root_rank,
                    world_size: self.world_size(),
                });
            }

            // Enhanced mock NCCL broadcast with realistic behavior
            // This simulates: ncclBcast(buff, count, datatype, root, comm, stream)

            let start_time = std::time::Instant::now();

            info!(
                " Enhanced Mock NCCL: Broadcast {} elements from rank {} to device {} (rank {}/{})",
                data.len(),
                root_rank,
                self.device_id,
                self.rank(),
                self.world_size()
            );

            // Validate input data
            if data.is_empty() {
                info!("     Warning: Broadcasting empty data");
                return Ok(());
            }

            // Simulate network latency for broadcast tree topology
            let latency_ms = (data.len() as f64 * 0.0005 + 2.0).max(0.5);
            std::thread::sleep(std::time::Duration::from_millis(latency_ms as u64));

            // Enhanced mock implementation: simulate realistic broadcast behavior
            if self.rank() == root_rank {
                info!(
                    "   📤 Root rank {} sending data to {} other ranks",
                    root_rank,
                    self.world_size() - 1
                );
            } else {
                info!(
                    "   📥 Rank {} receiving data from root rank {}",
                    self.rank(),
                    root_rank
                );

                // Simulate receiving data from root
                // In a real scenario, this would copy data from root rank
                // For mock purposes, we generate predictable data based on root rank
                for (i, val) in data.iter_mut().enumerate() {
                    *val = root_rank as f32 + (i as f32 * 0.01); // Predictable pattern
                }
            }

            let duration = start_time.elapsed();
            let bandwidth_gbps = (data.len() * 4) as f64 / duration.as_secs_f64() / 1e9;

            info!(
                "    Broadcast completed in {:?} (simulated bandwidth: {:.2} GB/s)",
                duration, bandwidth_gbps
            );

            Ok(())
        }
    }

    #[async_trait]
    impl Backend for NcclBackend {
        fn backend_type(&self) -> BackendType {
            BackendType::Nccl
        }

        async fn init(&mut self, _config: BackendConfig) -> TorshResult<()> {
            if self.initialized.load(Ordering::Acquire) {
                return Ok(());
            }

            self.init_communicator()?;
            self.initialized.store(true, Ordering::Release);

            info!(
                " Mock NCCL: Backend initialized for rank {}/{} on device {}",
                self.rank(),
                self.world_size(),
                self.device_id
            );

            Ok(())
        }

        async fn cleanup(&mut self) -> TorshResult<()> {
            if !self.initialized.load(Ordering::Acquire) {
                return Ok(());
            }

            // Enhanced mock NCCL cleanup
            // This simulates: ncclCommDestroy(comm)

            info!(
                "🧹 Enhanced Mock NCCL: Cleaning up backend for rank {} on device {}",
                self.rank(),
                self.device_id
            );

            // Simulate cleanup operations
            info!("   🔧 Destroying NCCL communicator");
            info!("   📱 Releasing CUDA resources");
            info!("    Freeing memory pools");

            // Simulate cleanup time
            tokio::time::sleep(std::time::Duration::from_millis(10)).await;

            self.initialized.store(false, Ordering::Release);

            info!("    NCCL backend cleanup completed");

            Ok(())
        }

        fn is_ready(&self) -> bool {
            self.initialized.load(Ordering::Acquire)
        }

        fn rank(&self) -> u32 {
            self.rank
        }

        fn world_size(&self) -> u32 {
            self.world_size
        }

        async fn barrier(&mut self) -> TorshResult<()> {
            if !self.is_ready() {
                return Err(TorshDistributedError::backend_error(
                    "NCCL",
                    "Backend not initialized",
                ));
            }

            // Enhanced mock NCCL barrier using all-reduce approach
            // NCCL doesn't have a direct barrier, so we typically use:
            // 1. Create dummy data
            // 2. Call ncclAllReduce with sum operation
            // 3. Synchronize CUDA stream

            let start_time = std::time::Instant::now();

            info!(
                "🚧 Enhanced Mock NCCL: Barrier sync for rank {} on device {} ({} total ranks)",
                self.rank(),
                self.device_id,
                self.world_size()
            );

            // Simulate barrier implementation using all-reduce of dummy data
            info!("    Creating dummy data for barrier all-reduce");
            let _dummy_data = [1.0f32]; // Single element for barrier

            // Simulate all-reduce latency (barrier is typically slower than regular all-reduce)
            let latency_ms = (self.world_size() as f64 * 2.0).max(5.0);
            std::thread::sleep(std::time::Duration::from_millis(latency_ms as u64));

            // Simulate the all-reduce operation for barrier
            info!(
                "    Performing barrier all-reduce across {} ranks",
                self.world_size()
            );

            // Simulate CUDA stream synchronization
            info!("   ⏳ Synchronizing CUDA stream");
            std::thread::sleep(std::time::Duration::from_millis(1));

            let duration = start_time.elapsed();

            info!("    Barrier synchronization completed in {:?}", duration);

            Ok(())
        }

        fn capabilities(&self) -> BackendCapabilities {
            BackendCapabilities {
                async_operations: true,
                gpu_support: true,
                p2p_communication: true,
                custom_reduce_ops: true,
                max_tensor_size: Some(2_147_483_648), // 2GB max for NCCL
                supported_dtypes: vec![
                    "f32".to_string(),
                    "f64".to_string(),
                    "f16".to_string(),
                    "bf16".to_string(),
                    "i32".to_string(),
                    "i64".to_string(),
                ],
            }
        }

        fn status(&self) -> BackendStatus {
            BackendStatus {
                initialized: self.initialized.load(Ordering::Acquire),
                healthy: true,
                active_operations: 0,
                total_operations: 0,
                failed_operations: 0,
                last_error: None,
            }
        }

        async fn all_reduce(
            &mut self,
            tensor: &mut (dyn Any + Send + Sync),
            op: ReduceOp,
        ) -> TorshResult<()> {
            if !self.is_ready() {
                return Err(TorshDistributedError::backend_error(
                    "NCCL",
                    "Backend not initialized",
                ));
            }

            // Enhanced mock NCCL all-reduce using the helper method
            // In a real implementation, this would:
            // 1. Convert tensor to CUDA device memory
            // 2. Call ncclAllReduce() with appropriate operation
            // 3. Synchronize CUDA stream

            let start_time = std::time::Instant::now();

            info!(
                " Enhanced Mock NCCL: All-reduce operation {:?} on device {} (rank {}/{})",
                op,
                self.device_id,
                self.rank(),
                self.world_size()
            );

            // Try to downcast to f32 slice for processing
            if let Some(data) = tensor.downcast_mut::<Vec<f32>>() {
                // Simulate operation-specific behavior
                match op {
                    ReduceOp::Sum => {
                        // Simulate sum reduction: multiply by world_size (as if summed)
                        for val in data.iter_mut() {
                            *val *= self.world_size() as f32;
                        }
                    }
                    ReduceOp::Product => {
                        // Simulate product reduction: raise to power of world_size
                        for val in data.iter_mut() {
                            *val = val.powi(self.world_size() as i32);
                        }
                    }
                    ReduceOp::Min => {
                        // Min stays the same in mock (no change needed)
                        info!("     Mock MIN reduction (no change in single process)");
                    }
                    ReduceOp::Max => {
                        // Max stays the same in mock (no change needed)
                        info!("     Mock MAX reduction (no change in single process)");
                    }
                    ReduceOp::Mean => {
                        // Mean stays the same (sum / world_size = original)
                        info!("    Mock MEAN reduction (no change in single process)");
                    }
                    ReduceOp::Band | ReduceOp::Bor | ReduceOp::Bxor => {
                        // Bitwise operations stay the same in single process mock
                        info!("    Mock BITWISE reduction (no change in single process)");
                    }
                }

                // Simulate network latency
                let latency_ms =
                    (data.len() as f64 * 0.001 + self.world_size() as f64 * 0.5).max(1.0);
                tokio::time::sleep(std::time::Duration::from_millis(latency_ms as u64)).await;

                let duration = start_time.elapsed();
                let bandwidth_gbps = (data.len() * 4) as f64 / duration.as_secs_f64() / 1e9;

                info!(
                    "    All-reduce completed in {:?} (simulated bandwidth: {:.2} GB/s)",
                    duration, bandwidth_gbps
                );
            }

            Ok(())
        }

        async fn all_gather(
            &mut self,
            tensor: &(dyn Any + Send + Sync),
        ) -> TorshResult<Box<dyn Any + Send>> {
            if !self.is_ready() {
                return Err(TorshDistributedError::backend_error(
                    "NCCL",
                    "Backend not initialized",
                ));
            }

            // Enhanced mock NCCL all-gather implementation
            // In a real implementation, this would:
            // 1. Allocate output buffer of size world_size * tensor_size
            // 2. Call ncclAllGather()
            // 3. Each rank gets concatenated tensors from all ranks

            let start_time = std::time::Instant::now();

            info!(
                " Enhanced Mock NCCL: All-gather on device {} (rank {}/{})",
                self.device_id,
                self.rank(),
                self.world_size()
            );

            // Try to downcast to f32 slice for processing
            if let Some(data) = tensor.downcast_ref::<Vec<f32>>() {
                // Create output buffer: concatenate data from all ranks
                let mut gathered = Vec::with_capacity(data.len() * self.world_size() as usize);

                // Simulate gathering from all ranks
                for rank_id in 0..self.world_size() {
                    // Simulate rank-specific data variation
                    let rank_data: Vec<f32> = data
                        .iter()
                        .enumerate()
                        .map(|(i, &v)| v + rank_id as f32 * 0.01 + i as f32 * 0.0001)
                        .collect();
                    gathered.extend(rank_data);
                }

                // Simulate network latency (all-gather transfers more data than all-reduce)
                let latency_ms =
                    (data.len() as f64 * self.world_size() as f64 * 0.001 + 2.0).max(1.0);
                tokio::time::sleep(std::time::Duration::from_millis(latency_ms as u64)).await;

                let duration = start_time.elapsed();
                let total_bytes = gathered.len() * 4;
                let bandwidth_gbps = total_bytes as f64 / duration.as_secs_f64() / 1e9;

                info!(
                    "    All-gather completed: {} elements -> {} elements in {:?} (bandwidth: {:.2} GB/s)",
                    data.len(),
                    gathered.len(),
                    duration,
                    bandwidth_gbps
                );

                return Ok(Box::new(gathered));
            }

            Err(TorshDistributedError::backend_error(
                "NCCL all_gather",
                "Unsupported tensor type for mock implementation",
            ))
        }

        async fn broadcast(
            &mut self,
            tensor: &mut (dyn Any + Send + Sync),
            root: u32,
        ) -> TorshResult<()> {
            if !self.is_ready() {
                return Err(TorshDistributedError::backend_error(
                    "NCCL",
                    "Backend not initialized",
                ));
            }

            if root >= self.world_size() {
                return Err(TorshDistributedError::RankOutOfBounds {
                    rank: root,
                    world_size: self.world_size(),
                });
            }

            // Enhanced mock NCCL broadcast using the helper method
            let start_time = std::time::Instant::now();

            info!(
                " Enhanced Mock NCCL: Broadcast from rank {} to device {} (rank {}/{})",
                root,
                self.device_id,
                self.rank(),
                self.world_size()
            );

            // Try to downcast to f32 slice for processing
            if let Some(data) = tensor.downcast_mut::<Vec<f32>>() {
                self.mock_broadcast(data, root)?;
            }

            let duration = start_time.elapsed();
            info!("    Broadcast completed in {:?}", duration);

            Ok(())
        }

        async fn send(
            &mut self,
            tensor: &(dyn Any + Send + Sync),
            dst: u32,
            tag: u32,
        ) -> TorshResult<()> {
            if !self.is_ready() {
                return Err(TorshDistributedError::backend_error(
                    "NCCL",
                    "Backend not initialized",
                ));
            }

            if dst >= self.world_size() {
                return Err(TorshDistributedError::RankOutOfBounds {
                    rank: dst,
                    world_size: self.world_size(),
                });
            }

            // Enhanced mock NCCL point-to-point send
            // In a real implementation, this would:
            // 1. Call ncclSend() to destination rank
            // 2. Uses NCCL's efficient P2P communication

            let start_time = std::time::Instant::now();

            info!(
                "📤 Enhanced Mock NCCL: Send to rank {} with tag {} from device {} (rank {}/{})",
                dst,
                tag,
                self.device_id,
                self.rank(),
                self.world_size()
            );

            // Try to get tensor size for simulation
            let data_size = if let Some(data) = tensor.downcast_ref::<Vec<f32>>() {
                data.len()
            } else {
                1024 // Default size for unknown types
            };

            // Simulate P2P send latency (faster than collectives)
            let latency_ms = (data_size as f64 * 0.0005 + 0.5).max(0.2);
            tokio::time::sleep(std::time::Duration::from_millis(latency_ms as u64)).await;

            let duration = start_time.elapsed();
            let bandwidth_gbps = (data_size * 4) as f64 / duration.as_secs_f64() / 1e9;

            info!(
                "     Send completed: {} elements in {:?} (bandwidth: {:.2} GB/s)",
                data_size, duration, bandwidth_gbps
            );

            Ok(())
        }

        async fn recv(&mut self, src: u32, tag: u32) -> TorshResult<Box<dyn Any + Send>> {
            if !self.is_ready() {
                return Err(TorshDistributedError::backend_error(
                    "NCCL",
                    "Backend not initialized",
                ));
            }

            if src >= self.world_size() {
                return Err(TorshDistributedError::RankOutOfBounds {
                    rank: src,
                    world_size: self.world_size(),
                });
            }

            // Enhanced mock NCCL point-to-point receive
            // In a real implementation, this would:
            // 1. Call ncclRecv() from source rank
            // 2. Return received tensor data

            let start_time = std::time::Instant::now();

            info!(
                "📥 Enhanced Mock NCCL: Recv from rank {} with tag {} on device {} (rank {}/{})",
                src,
                tag,
                self.device_id,
                self.rank(),
                self.world_size()
            );

            // Simulate receiving data - create mock data based on src rank
            let mock_size = 1024; // Default mock tensor size
            let received_data: Vec<f32> = (0..mock_size)
                .map(|i| src as f32 + tag as f32 * 0.1 + i as f32 * 0.001)
                .collect();

            // Simulate P2P recv latency (faster than collectives)
            let latency_ms = (mock_size as f64 * 0.0005 + 0.5).max(0.2);
            tokio::time::sleep(std::time::Duration::from_millis(latency_ms as u64)).await;

            let duration = start_time.elapsed();
            let bandwidth_gbps = (mock_size * 4) as f64 / duration.as_secs_f64() / 1e9;

            info!(
                "     Recv completed: {} elements in {:?} (bandwidth: {:.2} GB/s)",
                mock_size, duration, bandwidth_gbps
            );

            Ok(Box::new(received_data))
        }

        fn as_any(&self) -> &dyn std::any::Any {
            self
        }

        fn as_any_mut(&mut self) -> &mut dyn std::any::Any {
            self
        }
    }

    impl Drop for NcclBackend {
        fn drop(&mut self) {
            std::mem::drop(self.cleanup());
        }
    }
}

#[cfg(feature = "nccl")]
pub use nccl_backend::NcclBackend;