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
//! hybrid_f32 - f32統一ハイブリッドシステム
//! hybrid_f32 - f32 unified hybrid system
// ============================================
// Core Modules
// ============================================
/// エラー処理
/// Error handling
/// テンサー実装
/// Tensor implementations
/// 自動微分
/// Automatic differentiation
/// ニューラルネットワーク
/// Neural networks
// ============================================
// System Modules
// ============================================
/// GPU処理
/// GPU processing
/// メモリ管理
/// Memory management
/// 統一API
/// Unified API
/// ベンチマーク
/// Benchmarks
/// 実験結果
/// Experiment results
// ============================================
// Essential Re-exports
// ============================================
// Error types
pub use ;
// Primary tensor type
pub use F32Tensor;
// Experiment system
pub use ;
// Macro access
pub use cratehybrid_f32_experimental;