torsh-backend 0.1.2

Backend abstraction layer 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
//! WebGPU backend implementation for ToRSh

use crate::buffer::generate_buffer_id;
use crate::memory::MemoryPoolConfig;
use crate::profiler::SimpleProfiler;
#[cfg(feature = "webgpu")]
use crate::webgpu::wgpu;
use crate::webgpu::{
    WebGpuBackendConfig, WebGpuDevice, WebGpuError, WebGpuKernelExecutor, WebGpuMemoryManager,
};
use crate::{
    BackendCore, BackendResult, Buffer, BufferDescriptor, BufferHandle, Device, Kernel,
    KernelDescriptor, KernelHandle, MemoryManager, MemoryStats, Profiler,
};
use parking_lot::RwLock;
use std::collections::HashMap;
use std::sync::Arc;
use torsh_core::{device::DeviceType, error::TorshError};

/// WebGPU backend implementation
#[derive(Debug)]
pub struct WebGpuBackend {
    config: WebGpuBackendConfig,
    devices: RwLock<HashMap<usize, Arc<WebGpuDevice>>>,
    memory_managers: RwLock<HashMap<usize, Arc<RwLock<WebGpuMemoryManager>>>>,
    kernel_executors: RwLock<HashMap<usize, Arc<WebGpuKernelExecutor>>>,
    profiler: Arc<SimpleProfiler>,
    initialized: RwLock<bool>,
}

impl WebGpuBackend {
    /// Create a new WebGPU backend
    pub fn new(config: WebGpuBackendConfig) -> Self {
        Self {
            config,
            devices: RwLock::new(HashMap::new()),
            memory_managers: RwLock::new(HashMap::new()),
            kernel_executors: RwLock::new(HashMap::new()),
            profiler: Arc::new(SimpleProfiler::new()),
            initialized: RwLock::new(false),
        }
    }

    /// Create WebGPU backend with default configuration
    pub fn with_default_config() -> Self {
        Self::new(WebGpuBackendConfig::default())
    }

    /// Create a builder for WebGPU backend
    pub fn builder() -> WebGpuBackendBuilder {
        WebGpuBackendBuilder::new()
    }

    /// Get the backend configuration
    pub fn config(&self) -> &WebGpuBackendConfig {
        &self.config
    }

    /// Get a specific device by ID
    pub fn get_device(&self, device_id: usize) -> BackendResult<Arc<WebGpuDevice>> {
        let devices = self.devices.read();
        devices
            .get(&device_id)
            .cloned()
            .ok_or_else(|| TorshError::BackendError(format!("Device {} not found", device_id)))
    }

    /// Get memory manager for a device
    pub fn get_memory_manager(
        &self,
        device_id: usize,
    ) -> BackendResult<Arc<RwLock<WebGpuMemoryManager>>> {
        let managers = self.memory_managers.read();
        managers.get(&device_id).cloned().ok_or_else(|| {
            TorshError::BackendError(format!("Memory manager for device {} not found", device_id))
        })
    }

    /// Get kernel executor for a device
    pub fn get_kernel_executor(
        &self,
        device_id: usize,
    ) -> BackendResult<Arc<WebGpuKernelExecutor>> {
        let executors = self.kernel_executors.read();
        executors.get(&device_id).cloned().ok_or_else(|| {
            TorshError::BackendError(format!(
                "Kernel executor for device {} not found",
                device_id
            ))
        })
    }

    /// Initialize a specific device
    async fn initialize_device(&self, device_id: usize) -> BackendResult<Arc<WebGpuDevice>> {
        let device = if let Some(adapter_index) = self.config.adapter_index {
            WebGpuDevice::from_adapter_index(adapter_index, device_id).await
        } else {
            WebGpuDevice::from_best_adapter(device_id).await
        }
        .map_err(|e| TorshError::BackendError(e.to_string()))?;

        let device = Arc::new(device);

        // Create memory manager
        let memory_config = MemoryPoolConfig::default();
        let memory_manager = Arc::new(RwLock::new(WebGpuMemoryManager::new(
            Arc::clone(&device),
            memory_config,
        )));

        // Create kernel executor
        let kernel_executor = Arc::new(WebGpuKernelExecutor::new(Arc::clone(&device)));

        // Store in maps
        {
            let mut devices = self.devices.write();
            devices.insert(device_id, Arc::clone(&device));
        }
        {
            let mut managers = self.memory_managers.write();
            managers.insert(device_id, memory_manager);
        }
        {
            let mut executors = self.kernel_executors.write();
            executors.insert(device_id, kernel_executor);
        }

        Ok(device)
    }

    /// Convert WebGPU error to TorshError
    fn convert_error(error: WebGpuError) -> TorshError {
        TorshError::BackendError(error.to_string())
    }

    /// Extract WebGPU buffer from buffer handle
    fn extract_webgpu_buffer(&self, buffer: &Buffer) -> BackendResult<&wgpu::Buffer> {
        match &buffer.handle {
            BufferHandle::WebGpu {
                buffer_ptr,
                size: _,
            } => {
                // Safety: This is a simplified approach
                // Real implementation would use proper pointer management
                unsafe {
                    let wgpu_buffer_ptr = *buffer_ptr as *const wgpu::Buffer;
                    Ok(&*wgpu_buffer_ptr)
                }
            }
            _ => Err(TorshError::BackendError(
                "Buffer is not a WebGPU buffer".to_string(),
            )),
        }
    }

    /// Extract WebGPU buffers from buffer handles
    fn extract_webgpu_buffers(
        &self,
        src: &Buffer,
        dst: &Buffer,
    ) -> BackendResult<(&wgpu::Buffer, &wgpu::Buffer)> {
        let src_buf = self.extract_webgpu_buffer(src)?;
        let dst_buf = self.extract_webgpu_buffer(dst)?;
        Ok((src_buf, dst_buf))
    }
}

impl BackendCore for WebGpuBackend {
    fn device_type(&self) -> DeviceType {
        DeviceType::Wgpu(0)
    }

    fn name(&self) -> &str {
        "WebGPU"
    }

    fn is_available(&self) -> BackendResult<bool> {
        Ok(crate::webgpu::is_available())
    }

    fn capabilities(&self) -> crate::backend::BackendCapabilities {
        crate::backend::BackendCapabilities {
            max_buffer_size: 2_147_483_648, // 2GB for WebGPU
            max_compute_units: 8,
            max_workgroup_size: (256, 256, 64),
            supported_dtypes: vec![
                torsh_core::dtype::DType::F32,
                torsh_core::dtype::DType::I32,
                torsh_core::dtype::DType::U32,
            ],
            supports_async: true,
            supports_unified_memory: false,
            supports_sub_buffers: true,
            supports_kernel_caching: true,
            memory_bandwidth_gbps: 100.0,    // Default WebGPU bandwidth
            compute_throughput_gflops: 50.0, // Default WebGPU compute throughput
            extended_capabilities: crate::backend::ExtendedCapabilities::default(),
        }
    }

    fn performance_hints(&self) -> crate::backend::PerformanceHints {
        crate::backend::PerformanceHints {
            preferred_workgroup_size: (64, 1, 1),
            memory_alignment: 256, // WebGPU requires 256-byte alignment for buffer offsets
            prefer_vectorized: true,
            prefer_async: true,
            optimal_batch_size: 256,
            cache_kernels: true,
        }
    }
}

#[async_trait::async_trait]
impl crate::backend::BackendLifecycle for WebGpuBackend {
    async fn initialize(&mut self) -> BackendResult<()> {
        if *self.initialized.read() {
            return Ok(());
        }

        // Initialize WebGPU
        crate::webgpu::init().await.map_err(Self::convert_error)?;

        // Initialize at least one device (device 0)
        self.initialize_device(0).await?;

        *self.initialized.write() = true;
        Ok(())
    }

    async fn shutdown(&mut self) -> BackendResult<()> {
        // Clear all devices and managers
        self.devices.write().clear();
        self.memory_managers.write().clear();
        self.kernel_executors.write().clear();

        *self.initialized.write() = false;
        Ok(())
    }

    fn is_initialized(&self) -> bool {
        *self.initialized.read()
    }
}

impl crate::backend::BackendDeviceManager for WebGpuBackend {
    fn devices(&self) -> BackendResult<Vec<Device>> {
        let devices = self.devices.read();
        Ok(devices
            .values()
            .map(|d| {
                let webgpu_device = d.as_ref();
                Device::new(
                    0, // Use 0 as default device index for WebGPU
                    webgpu_device.device_type(),
                    webgpu_device.name().to_string(),
                    webgpu_device.info().clone(),
                )
            })
            .collect())
    }

    fn default_device(&self) -> BackendResult<Device> {
        let webgpu_device = self.get_device(0)?;
        Ok(Device::new(
            0, // Use 0 as default device index for WebGPU
            webgpu_device.device_type(),
            webgpu_device.name().to_string(),
            webgpu_device.info().clone(),
        ))
    }

    fn create_device(&self, device_id: usize) -> BackendResult<Device> {
        // Check if device already exists
        if let Ok(webgpu_device) = self.get_device(device_id) {
            return Ok(Device::new(
                device_id, // Use the provided device_id
                webgpu_device.device_type(),
                webgpu_device.name().to_string(),
                webgpu_device.info().clone(),
            ));
        }

        // This is synchronous but we need async - use a runtime
        let runtime = tokio::runtime::Handle::try_current().or_else(|_| {
            tokio::runtime::Runtime::new()
                .map(|rt| rt.handle().clone())
                .map_err(|e| {
                    TorshError::BackendError(format!("Failed to create async runtime: {}", e))
                })
        })?;

        let webgpu_device = runtime.block_on(async { self.initialize_device(device_id).await })?;

        Ok(Device::new(
            device_id, // Use the provided device_id
            webgpu_device.device_type(),
            webgpu_device.name().to_string(),
            webgpu_device.info().clone(),
        ))
    }

    fn device_count(&self) -> BackendResult<usize> {
        Ok(self.devices.read().len())
    }

    fn is_device_available(&self, device_id: usize) -> bool {
        self.devices.read().contains_key(&device_id)
    }
}

impl crate::backend::BackendResourceManager for WebGpuBackend {
    fn create_buffer(
        &self,
        device: &Device,
        descriptor: &BufferDescriptor,
    ) -> BackendResult<Buffer> {
        let memory_manager = self.get_memory_manager(device.id())?;
        let buffer = memory_manager.write().allocate(descriptor)?;

        // This is a bit of a hack - we return the buffer directly
        // In a real implementation, you'd want a more sophisticated approach
        Ok(buffer)
    }

    fn create_kernel(
        &self,
        device: &Device,
        descriptor: &KernelDescriptor,
    ) -> BackendResult<Kernel> {
        let kernel_executor = self.get_kernel_executor(device.id())?;
        let _webgpu_kernel = kernel_executor
            .create_kernel(descriptor.clone())
            .map_err(Self::convert_error)?;

        // Create a proper Kernel instance
        let kernel_handle = KernelHandle::WebGpu {
            shader_module_id: format!("webgpu_shader_{}", descriptor.name),
            entry_point: "main".to_string(), // Default WebGPU entry point
        };
        let kernel_metadata = crate::kernel::KernelMetadata {
            compile_time_ms: 0.0,
            binary_size: 0,
            registers_per_thread: None,
            shared_memory_usage: None,
            max_workgroup_size: descriptor.workgroup_size_hint,
            compiler_version: "wgpu".to_string(),
            warnings: Vec::new(),
            performance_hints: Vec::new(),
        };

        Ok(Kernel::new(
            0, // kernel id
            device.clone(),
            descriptor.name.clone(),
            descriptor.clone(),
            kernel_handle,
            kernel_metadata,
        ))
    }

    fn memory_manager(
        &self,
        device: &Device,
    ) -> BackendResult<Box<dyn MemoryManager + Send + Sync>> {
        let manager = self.get_memory_manager(device.id())?;

        // Create a wrapper that implements the MemoryManager trait
        Ok(Box::new(WebGpuMemoryManagerWrapper { inner: manager })
            as Box<dyn MemoryManager + Send + Sync>)
    }

    fn profiler(&self) -> BackendResult<Box<dyn Profiler + Send + Sync>> {
        Ok(Box::new((*self.profiler).clone()) as Box<dyn Profiler + Send + Sync>)
    }

    fn create_scoped_buffer(
        &self,
        device: &Device,
        descriptor: &BufferDescriptor,
    ) -> BackendResult<Buffer> {
        // For WebGPU, scoped buffers are the same as regular buffers
        self.create_buffer(device, descriptor)
    }
}

#[async_trait::async_trait]
impl crate::backend::BackendExecutor for WebGpuBackend {
    async fn synchronize(&self, device: &Device) -> BackendResult<()> {
        let webgpu_device = self.get_device(device.id())?;
        webgpu_device
            .wait_for_completion()
            .await
            .map_err(Self::convert_error)
    }

    async fn copy_buffer(
        &self,
        _src: &Buffer,
        _dst: &Buffer,
        _src_offset: usize,
        _dst_offset: usize,
        _size: usize,
    ) -> BackendResult<()> {
        // Extract device ID from buffer (assuming both buffers are on same device)
        let device_id = 0; // Default device for now
        let webgpu_device = self.get_device(device_id)?;

        // Create command encoder
        let _encoder = webgpu_device.create_command_encoder(Some("Buffer Copy"));

        // We need to downcast the buffers to WebGpuBuffer
        // This is a simplified approach - real implementation would use proper buffer traits
        // TODO: Fix as_any() method calls when trait is in scope
        // For now, return success to test basic compilation
        Ok(())

        // Temporarily disabled until as_any trait is available:
        // if let (Some(src_buf), Some(dst_buf)) = (
        //     src.as_any().downcast_ref::<WebGpuBuffer>(),
        //     dst.as_any().downcast_ref::<WebGpuBuffer>(),
        // ) {
        //     dst_buf.copy_from_buffer(...);
        //     ...
        // }
    }

    async fn copy_to_device(
        &self,
        _src: &[u8],
        _dst: &Buffer,
        _dst_offset: usize,
    ) -> BackendResult<()> {
        // Extract device ID
        let device_id = 0; // Default device for now
        let _webgpu_device = self.get_device(device_id)?;

        // TODO: Fix as_any() method calls when trait is in scope
        // For now, return success to test basic compilation
        Ok(())

        // Temporarily disabled:
        // if let Some(dst_buf) = dst.as_any().downcast_ref::<WebGpuBuffer>() {
        //     webgpu_device.queue().write_buffer(dst_buf.wgpu_buffer(), dst_offset as u64, src);
        //     Ok(())
        // } else {
        //     Err(TorshError::BackendError("Buffer is not a WebGPU buffer".to_string()))
        // }
    }

    async fn copy_from_device(
        &self,
        _src: &Buffer,
        _dst: &mut [u8],
        _src_offset: usize,
    ) -> BackendResult<()> {
        // Extract device ID
        let device_id = 0; // Default device for now
        let _webgpu_device = self.get_device(device_id)?;

        // TODO: Fix as_any() method calls when trait is in scope
        // For now, return success to test basic compilation
        Ok(())

        // Temporarily disabled:
        // if let Some(src_buf) = src.as_any().downcast_ref::<WebGpuBuffer>() {
        //     // Create staging buffer for reading
        //     let staging_desc = crate::BufferDescriptor {
        //         name: "staging_read_buffer".to_string(),
        //         size: dst.len() as u64,
        //         usage: crate::BufferUsage::MAP_READ | crate::BufferUsage::COPY_DST,
        //         memory_location: crate::MemoryLocation::HostVisible,
        //     };

        //     let staging_handle = crate::BufferHandle::new(999999); // Temporary handle
        //     let staging_buffer =
        //         WebGpuBuffer::new(Arc::clone(&webgpu_device), staging_desc, staging_handle)
        //             .map_err(Self::convert_error)?;
        //
        //     // Copy from source to staging buffer and other operations...
        //     // All temporarily commented out until as_any trait is available
        //     Ok(())
        // } else {
        //     Err(TorshError::BackendError(
        //         "Buffer is not a WebGPU buffer".to_string(),
        //     ))
        // }
    }

    async fn execute_kernel(
        &self,
        kernel: &Kernel,
        _buffers: &[&Buffer],
        uniform_data: &[u8],
        workgroup_size: (u32, u32, u32),
        workgroup_count: (u32, u32, u32),
    ) -> BackendResult<()> {
        // Extract device ID
        let device_id = 0; // Default device for now
        let kernel_executor = self.get_kernel_executor(device_id)?;

        // Execute kernel using the stored WebGPU kernel from handle
        match &kernel.handle {
            KernelHandle::WebGpu {
                shader_module_id: _,
                entry_point: _,
            } => {
                // For now, execute a simple kernel based on kernel name
                // In a full implementation, this would use a kernel cache
                kernel_executor
                    .execute_simple_kernel(
                        &kernel.name,
                        &[], // Simplified - would pass actual wgpu buffers
                        uniform_data,
                        workgroup_size,
                        workgroup_count,
                    )
                    .await
                    .map_err(Self::convert_error)
            }
            _ => Err(TorshError::BackendError(
                "Invalid kernel handle for WebGPU backend".to_string(),
            )),
        }
    }
}

impl crate::backend::BackendOperations for WebGpuBackend {
    fn fft_ops(&self) -> Box<dyn crate::fft::FftOps> {
        Box::new(crate::cpu::fft::CpuFftOps::new(None))
    }

    fn convolution_ops(&self) -> Box<dyn crate::convolution::ConvolutionOps> {
        Box::new(crate::cpu::convolution::CpuConvolutionOps::new(None))
    }

    fn rnn_ops(&self) -> Box<dyn crate::rnn::RnnOps> {
        Box::new(crate::cpu::rnn::CpuRnnOps::new(None))
    }

    fn sparse_ops(&self) -> Box<dyn crate::sparse_ops::SparseOps<f32>> {
        Box::new(crate::sparse_ops::DefaultSparseOps::new(
            crate::Device::new(
                0,
                torsh_core::device::DeviceType::Wgpu(0),
                "WebGPU Device".to_string(),
                crate::DeviceInfo::default(),
            ),
        ))
    }

    fn quantization_ops(&self) -> Box<dyn crate::quantization::QuantizationOps> {
        Box::new(crate::quantization::CpuQuantizationOps::new())
    }

    fn operations_bundle(&self) -> crate::backend::OperationsBundle {
        crate::backend::OperationsBundle {
            fft: self.fft_ops(),
            convolution: self.convolution_ops(),
            rnn: self.rnn_ops(),
            quantization: self.quantization_ops(),
            sparse: self.sparse_ops(),
        }
    }
}

impl crate::backend::BackendOps for WebGpuBackend {
    fn backend_type(&self) -> crate::backend::BackendType {
        crate::backend::BackendType::WebGpu
    }

    fn available_ops(&self) -> Vec<&str> {
        vec![
            "elementwise_add",
            "elementwise_mul",
            "elementwise_sub",
            "elementwise_div",
            "matmul",
            "conv2d",
            "relu",
            "softmax",
            "batch_norm",
            "reduction",
        ]
    }

    fn supports_op(&self, op_name: &str) -> bool {
        self.available_ops().contains(&op_name)
    }

    fn supports_fft(&self) -> bool {
        true
    }

    fn supports_convolution(&self) -> bool {
        true
    }

    fn supports_rnn(&self) -> bool {
        true
    }

    fn supports_sparse(&self) -> bool {
        false
    }

    fn supports_quantization(&self) -> bool {
        true
    }

    fn operation_capabilities(
        &self,
        _op_name: &str,
    ) -> Option<std::collections::HashMap<String, crate::backend::CapabilityValue>> {
        None
    }
}

impl crate::backend::Backend for WebGpuBackend {
    fn as_core(&self) -> &dyn crate::backend::BackendCore {
        self
    }

    fn as_lifecycle(&mut self) -> &mut dyn crate::backend::BackendLifecycle {
        self
    }

    fn as_device_manager(&self) -> &dyn crate::backend::BackendDeviceManager {
        self
    }

    fn as_resource_manager(&self) -> &dyn crate::backend::BackendResourceManager {
        self
    }

    fn as_executor(&self) -> &dyn crate::backend::BackendExecutor {
        self
    }

    fn as_operations(&self) -> &dyn crate::backend::BackendOperations {
        self
    }
}

/// WebGPU backend builder for convenient configuration
#[derive(Debug)]
pub struct WebGpuBackendBuilder {
    config: WebGpuBackendConfig,
}

impl WebGpuBackendBuilder {
    /// Create a new builder
    pub fn new() -> Self {
        Self {
            config: WebGpuBackendConfig::default(),
        }
    }

    /// Set adapter index
    pub fn adapter_index(mut self, index: usize) -> Self {
        self.config.adapter_index = Some(index);
        self
    }

    /// Set device ID (alias for adapter_index for API consistency)
    pub fn device_id(mut self, id: usize) -> Self {
        self.config.adapter_index = Some(id);
        self
    }

    /// Set power preference
    pub fn power_preference(mut self, preference: wgpu::PowerPreference) -> Self {
        self.config.power_preference = preference;
        self
    }

    /// Enable debug mode
    pub fn debug_mode(mut self, enable: bool) -> Self {
        self.config.debug_mode = enable;
        self
    }

    /// Set maximum buffer size
    pub fn max_buffer_size(mut self, size: u64) -> Self {
        self.config.max_buffer_size = size;
        self
    }

    /// Enable pipeline cache
    pub fn enable_pipeline_cache(mut self, enable: bool) -> Self {
        self.config.enable_pipeline_cache = enable;
        self
    }

    /// Set preferred workgroup size
    pub fn preferred_workgroup_size(mut self, size: (u32, u32, u32)) -> Self {
        self.config.preferred_workgroup_size = size;
        self
    }

    /// Build the backend
    pub fn build(self) -> WebGpuBackend {
        WebGpuBackend::new(self.config)
    }
}

/// Memory manager wrapper to implement the trait
#[derive(Debug)]
pub struct WebGpuMemoryManagerWrapper {
    inner: Arc<RwLock<WebGpuMemoryManager>>,
}

impl MemoryManager for WebGpuMemoryManagerWrapper {
    fn allocate(
        &mut self,
        descriptor: &BufferDescriptor,
    ) -> torsh_core::error::Result<crate::Buffer> {
        let webgpu_buffer = self
            .inner
            .read()
            .buffer_pool()
            .get_buffer(descriptor.clone())
            .map_err(|e| TorshError::BackendError(e.to_string()))?;

        let handle = webgpu_buffer.handle().clone();
        let buffer = crate::Buffer::new(
            generate_buffer_id(),
            crate::Device::new(
                0,
                torsh_core::device::DeviceType::Wgpu(0),
                "WebGPU Device".to_string(),
                crate::DeviceInfo::default(),
            ),
            webgpu_buffer.descriptor().size as usize,
            descriptor.usage.clone(),
            descriptor.clone(),
            handle,
        );

        Ok(buffer)
    }

    fn deallocate(&mut self, _buffer: &crate::Buffer) -> torsh_core::error::Result<()> {
        Ok(())
    }

    fn stats(&self) -> MemoryStats {
        self.inner.read().stats()
    }

    fn garbage_collect(&mut self) -> torsh_core::error::Result<usize> {
        Ok(0)
    }

    fn set_pool(
        &mut self,
        _pool: Box<dyn crate::memory::MemoryPool>,
    ) -> torsh_core::error::Result<()> {
        Err(TorshError::BackendError(
            "WebGPU memory pool cannot be replaced".to_string(),
        ))
    }

    fn device(&self) -> &crate::Device {
        static WEBGPU_DEVICE: std::sync::OnceLock<crate::Device> = std::sync::OnceLock::new();
        WEBGPU_DEVICE.get_or_init(|| {
            crate::Device::new(
                0,
                torsh_core::device::DeviceType::Wgpu(0),
                "WebGPU Device".to_string(),
                crate::DeviceInfo::default(),
            )
        })
    }

    fn allocate_raw(
        &mut self,
        _size: usize,
        _alignment: usize,
    ) -> torsh_core::error::Result<*mut u8> {
        Err(TorshError::BackendError(
            "WebGPU doesn't support raw memory allocation".to_string(),
        ))
    }

    fn deallocate_raw(&mut self, _ptr: *mut u8, _size: usize) -> torsh_core::error::Result<()> {
        Err(TorshError::BackendError(
            "WebGPU doesn't support raw memory deallocation".to_string(),
        ))
    }

    fn supports_unified_memory(&self) -> bool {
        false
    }

    fn allocate_unified(&mut self, _size: usize) -> torsh_core::error::Result<*mut u8> {
        Err(TorshError::BackendError(
            "WebGPU doesn't support unified memory allocation".to_string(),
        ))
    }

    fn deallocate_unified(&mut self, _ptr: *mut u8, _size: usize) -> torsh_core::error::Result<()> {
        Err(TorshError::BackendError(
            "WebGPU doesn't support unified memory deallocation".to_string(),
        ))
    }

    fn prefetch_to_device(&self, _ptr: *mut u8, _size: usize) -> torsh_core::error::Result<()> {
        Ok(())
    }

    fn prefetch_to_host(&self, _ptr: *mut u8, _size: usize) -> torsh_core::error::Result<()> {
        Ok(())
    }

    fn set_memory_advice(
        &self,
        _ptr: *mut u8,
        _size: usize,
        _advice: crate::memory::MemoryAdvice,
    ) -> torsh_core::error::Result<()> {
        Ok(())
    }

    fn available_memory(&self) -> torsh_core::error::Result<usize> {
        Ok(1024 * 1024 * 1024)
    }

    fn total_memory(&self) -> torsh_core::error::Result<usize> {
        Ok(4 * 1024 * 1024 * 1024)
    }

    fn synchronize(&self) -> torsh_core::error::Result<()> {
        Ok(())
    }

    fn defragment(&mut self) -> torsh_core::error::Result<crate::memory::DefragmentationResult> {
        Ok(crate::memory::DefragmentationResult {
            blocks_moved: 0,
            memory_compacted: 0,
            duration_ms: 0.0,
            fragmentation_before: 0.0,
            fragmentation_after: 0.0,
            efficiency_improvement: 0.0,
            success: true,
        })
    }

    fn needs_defragmentation(&self) -> bool {
        false
    }

    fn fragmentation_info(&self) -> crate::memory::FragmentationInfo {
        crate::memory::FragmentationInfo {
            overall_fragmentation: 0.0,
            external_fragmentation: 0.0,
            internal_fragmentation: 0.0,
            free_blocks: 1,
            allocated_blocks: 0,
            largest_free_block: 1024 * 1024 * 1024,
            smallest_free_block: 1024 * 1024 * 1024,
            average_free_block: 1024 * 1024 * 1024,
            total_free_memory: 1024 * 1024 * 1024,
            total_allocated_memory: 0,
            utilization_efficiency: 1.0,
            allocation_efficiency: 1.0,
        }
    }

    fn compact_memory(&mut self) -> torsh_core::error::Result<crate::memory::CompactionResult> {
        Ok(crate::memory::CompactionResult {
            allocations_moved: 0,
            bytes_moved: 0,
            duration_ms: 0.0,
            largest_free_before: 1024 * 1024 * 1024,
            largest_free_after: 1024 * 1024 * 1024,
            free_blocks_before: 1,
            free_blocks_after: 1,
            success: true,
        })
    }

    fn set_defragmentation_policy(&mut self, _policy: crate::memory::DefragmentationPolicy) {
        // WebGPU doesn't support custom defragmentation policies
    }
}

/// Stub implementation of WebGPU RNN operations
pub struct WebGpuRnnOps;

impl WebGpuRnnOps {
    pub fn new() -> Self {
        Self
    }
}

// TODO: Implement RnnOps trait when it becomes available
/*
#[async_trait::async_trait]
impl crate::rnn::RnnOps for WebGpuRnnOps {
    async fn lstm_forward(
        &self,
        _device: &crate::Device,
        _input: &crate::Buffer,
        _hidden: &crate::Buffer,
        _cell: &crate::Buffer,
        _weights: &[&crate::Buffer],
        _biases: &[&crate::Buffer],
        _output: &crate::Buffer,
        _new_hidden: &crate::Buffer,
        _new_cell: &crate::Buffer,
        _batch_size: usize,
        _input_size: usize,
        _hidden_size: usize,
        _num_layers: usize,
        _dropout: f32,
        _bidirectional: bool,
    ) -> crate::BackendResult<()> {
        Err(torsh_core::error::TorshError::BackendError(
            "WebGPU RNN operations not yet implemented".to_string(),
        ))
    }

    async fn gru_forward(
        &self,
        _device: &crate::Device,
        _input: &crate::Buffer,
        _hidden: &crate::Buffer,
        _weights: &[&crate::Buffer],
        _biases: &[&crate::Buffer],
        _output: &crate::Buffer,
        _new_hidden: &crate::Buffer,
        _batch_size: usize,
        _input_size: usize,
        _hidden_size: usize,
        _num_layers: usize,
        _dropout: f32,
        _bidirectional: bool,
    ) -> crate::BackendResult<()> {
        Err(torsh_core::error::TorshError::BackendError(
            "WebGPU RNN operations not yet implemented".to_string(),
        ))
    }

    async fn rnn_forward(
        &self,
        _device: &crate::Device,
        _input: &crate::Buffer,
        _hidden: &crate::Buffer,
        _weights: &[&crate::Buffer],
        _biases: &[&crate::Buffer],
        _output: &crate::Buffer,
        _new_hidden: &crate::Buffer,
        _batch_size: usize,
        _input_size: usize,
        _hidden_size: usize,
        _num_layers: usize,
        _activation: crate::rnn::RnnActivation,
        _dropout: f32,
        _bidirectional: bool,
    ) -> crate::BackendResult<()> {
        Err(torsh_core::error::TorshError::BackendError(
            "WebGPU RNN operations not yet implemented".to_string(),
        ))
    }

    fn supports_lstm(&self) -> bool {
        false
    }

    fn supports_gru(&self) -> bool {
        false
    }

    fn supports_bidirectional(&self) -> bool {
        false
    }

    fn supports_dropout(&self) -> bool {
        false
    }

    fn optimal_workgroup_size(&self) -> (u32, u32, u32) {
        (64, 1, 1)
    }
}
*/

/// Stub implementation of WebGPU quantization operations
pub struct WebGpuQuantizationOps;

impl WebGpuQuantizationOps {
    pub fn new() -> Self {
        Self
    }
}

// TODO: Implement QuantizationOps trait with correct method signatures
/*
#[async_trait::async_trait]
impl crate::quantization::QuantizationOps for WebGpuQuantizationOps {
    async fn quantize_int8(
        &self,
        _device: &crate::Device,
        _input: &crate::Buffer,
        _output: &crate::Buffer,
        _scale: f32,
        _zero_point: i8,
    ) -> crate::BackendResult<()> {
        Err(torsh_core::error::TorshError::BackendError(
            "WebGPU quantization operations not yet implemented".to_string(),
        ))
    }

    async fn dequantize_int8(
        &self,
        _device: &crate::Device,
        _input: &crate::Buffer,
        _output: &crate::Buffer,
        _scale: f32,
        _zero_point: i8,
    ) -> crate::BackendResult<()> {
        Err(torsh_core::error::TorshError::BackendError(
            "WebGPU quantization operations not yet implemented".to_string(),
        ))
    }

    async fn quantize_int4(
        &self,
        _device: &crate::Device,
        _input: &crate::Buffer,
        _output: &crate::Buffer,
        _scale: f32,
        _zero_point: i8,
    ) -> crate::BackendResult<()> {
        Err(torsh_core::error::TorshError::BackendError(
            "WebGPU quantization operations not yet implemented".to_string(),
        ))
    }

    async fn dequantize_int4(
        &self,
        _device: &crate::Device,
        _input: &crate::Buffer,
        _output: &crate::Buffer,
        _scale: f32,
        _zero_point: i8,
    ) -> crate::BackendResult<()> {
        Err(torsh_core::error::TorshError::BackendError(
            "WebGPU quantization operations not yet implemented".to_string(),
        ))
    }

    fn supports_int8(&self) -> bool {
        false
    }

    fn supports_int4(&self) -> bool {
        false
    }

    fn optimal_workgroup_size(&self) -> (u32, u32, u32) {
        (64, 1, 1)
    }
}
*/

#[cfg(test)]
mod tests {
    use super::*;
    use crate::backend::{BackendCore, BackendDeviceManager, BackendLifecycle, BackendOps};
    use crate::BackendType;
    use torsh_core::DType;

    #[test]
    fn test_backend_creation() {
        let backend = WebGpuBackend::with_default_config();
        assert_eq!(backend.name(), "WebGPU");
        assert_eq!(backend.device_type(), DeviceType::Wgpu(0));
    }

    #[test]
    fn test_backend_builder() {
        let backend = WebGpuBackendBuilder::new()
            .adapter_index(0)
            .power_preference(wgpu::PowerPreference::HighPerformance)
            .debug_mode(true)
            .max_buffer_size(2 * 1024 * 1024 * 1024) // 2GB
            .enable_pipeline_cache(true)
            .preferred_workgroup_size((128, 1, 1))
            .build();

        assert_eq!(backend.config().adapter_index, Some(0));
        assert_eq!(
            backend.config().power_preference,
            wgpu::PowerPreference::HighPerformance
        );
        assert!(backend.config().debug_mode);
        assert_eq!(backend.config().max_buffer_size, 2 * 1024 * 1024 * 1024);
        assert!(backend.config().enable_pipeline_cache);
        assert_eq!(backend.config().preferred_workgroup_size, (128, 1, 1));
    }

    #[tokio::test]
    async fn test_backend_availability() {
        let backend = WebGpuBackend::with_default_config();

        match backend.is_available() {
            Ok(available) => {
                if available {
                    println!("WebGPU backend is available");
                } else {
                    println!("WebGPU backend is not available");
                }
            }
            Err(e) => {
                println!("Error checking WebGPU availability: {}", e);
            }
        }
    }

    #[tokio::test]
    async fn test_backend_initialization() {
        if cfg!(feature = "webgpu") && crate::webgpu::is_available() {
            let mut backend = WebGpuBackend::with_default_config();

            let result = backend.initialize().await;
            if result.is_ok() {
                assert!(*backend.initialized.read());

                // Test device creation
                let device_result = backend.default_device();
                if device_result.is_ok() {
                    let device = device_result.expect("operation should succeed");
                    assert_eq!(device.device_type(), DeviceType::Wgpu(0));
                }

                // Test shutdown
                let shutdown_result = backend.shutdown().await;
                assert!(shutdown_result.is_ok());
                assert!(!*backend.initialized.read());
            }
        }
    }

    #[test]
    fn test_backend_ops() {
        let backend = WebGpuBackend::with_default_config();

        assert_eq!(backend.backend_type(), BackendType::WebGpu);
        assert!(backend.supports_op("elementwise_add"));
        assert!(backend.supports_op("matmul"));
        assert!(backend.supports_op("conv2d"));
        assert!(!backend.supports_op("nonexistent_op"));

        let ops = backend.available_ops();
        assert!(!ops.is_empty());
        assert!(ops.contains(&"elementwise_add"));
    }

    #[test]
    fn test_capabilities() {
        let backend = WebGpuBackend::with_default_config();
        let capabilities = backend.capabilities();

        // Default capabilities when no device is available
        assert!(capabilities.supported_dtypes.contains(&DType::F32));
        assert!(capabilities.supports_async);
        assert!(capabilities.supports_kernel_caching);
    }

    #[test]
    fn test_performance_hints() {
        let backend = WebGpuBackend::with_default_config();
        let hints = backend.performance_hints();

        assert_eq!(hints.preferred_workgroup_size, (64, 1, 1));
        assert_eq!(hints.memory_alignment, 256);
        assert!(hints.prefer_vectorized);
        assert!(hints.prefer_async);
        assert!(hints.cache_kernels);
    }
}