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
//! Type specialization for JIT compilation
//!
//! This module provides type specialization capabilities, allowing the JIT compiler
//! to create optimized versions of functions and kernels for specific types and shapes.
use crate::ir::{IrModule, IrOpcode, TypeKind};
use crate::{JitError, JitResult};
use indexmap::IndexMap;
use torsh_core::{DType, Shape};
/// Type specialization engine
#[derive(Debug, Clone)]
pub struct TypeSpecializer {
/// Registry of specialized functions
specializations: IndexMap<SpecializationKey, SpecializedFunction>,
/// Specialization statistics
stats: SpecializationStats,
/// Configuration for specialization
config: SpecializationConfig,
}
/// Key identifying a specialization
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct SpecializationKey {
/// Original function name
pub function_name: String,
/// Specialized parameter types
pub param_types: Vec<SpecializedType>,
/// Return type specialization
pub return_type: Option<SpecializedType>,
}
/// Specialized type information
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct SpecializedType {
/// Base type
pub base_type: TypeKind,
/// Shape specialization (for tensors)
pub shape: Option<Vec<usize>>,
/// Constant value (for constant propagation)
pub constant_value: Option<ConstantValue>,
/// Memory layout hints
pub layout_hints: LayoutHints,
}
/// Constant values for specialization
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ConstantValue {
Int(i64),
Float(u64), // Stored as bits for hashing
Bool(bool),
Shape(Vec<usize>),
}
/// Memory layout optimization hints
#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)]
pub struct LayoutHints {
/// Preferred memory alignment
pub alignment: Option<usize>,
/// Whether data is contiguous
pub contiguous: bool,
/// Preferred data layout (e.g., row-major, column-major)
pub layout: Option<DataLayout>,
/// Cache locality hints
pub locality: LocalityHint,
}
/// Data layout preferences
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum DataLayout {
RowMajor,
ColumnMajor,
Packed,
Strided { strides: Vec<usize> },
}
/// Cache locality hints
#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)]
pub enum LocalityHint {
#[default]
None,
Temporal, // Will be reused soon
NonTemporal, // Won't be reused
Streaming, // Sequential access pattern
}
/// Specialized function implementation
#[derive(Debug, Clone)]
pub struct SpecializedFunction {
/// Specialization key
pub key: SpecializationKey,
/// Specialized IR module
pub module: IrModule,
/// Performance characteristics
pub perf_info: PerformanceInfo,
/// Usage statistics
pub usage_count: usize,
/// Compilation time
pub compile_time_ns: u64,
}
/// Performance information for specialized functions
#[derive(Debug, Clone, Default)]
pub struct PerformanceInfo {
/// Estimated execution time in nanoseconds
pub estimated_exec_time_ns: u64,
/// Memory bandwidth requirements (bytes/second)
pub memory_bandwidth: u64,
/// Arithmetic intensity (ops/byte)
pub arithmetic_intensity: f64,
/// Register pressure score (0-100)
pub register_pressure: u8,
/// Vectorization factor
pub vectorization_factor: usize,
}
/// Configuration for type specialization
#[derive(Debug, Clone)]
pub struct SpecializationConfig {
/// Maximum number of specializations per function
pub max_specializations_per_function: usize,
/// Minimum usage count before creating specialization
pub min_usage_threshold: usize,
/// Enable shape-based specialization
pub enable_shape_specialization: bool,
/// Enable constant propagation specialization
pub enable_constant_specialization: bool,
/// Enable layout optimization specialization
pub enable_layout_specialization: bool,
/// Performance improvement threshold (speedup ratio)
pub min_performance_improvement: f64,
/// Code size increase limit (ratio)
pub max_code_size_increase: f64,
}
/// Specialization statistics
#[derive(Debug, Clone, Default)]
pub struct SpecializationStats {
/// Total specializations created
pub total_specializations: usize,
/// Cache hits
pub cache_hits: usize,
/// Cache misses
pub cache_misses: usize,
/// Average compilation time
pub avg_compilation_time_ns: u64,
/// Total performance improvement
pub total_speedup: f64,
/// Code size overhead
pub code_size_overhead: f64,
}
impl Default for SpecializationConfig {
fn default() -> Self {
Self {
max_specializations_per_function: 16,
min_usage_threshold: 3,
enable_shape_specialization: true,
enable_constant_specialization: true,
enable_layout_specialization: true,
min_performance_improvement: 1.2, // 20% improvement minimum
max_code_size_increase: 2.0, // 2x size increase maximum
}
}
}
impl TypeSpecializer {
/// Create a new type specializer
pub fn new(config: SpecializationConfig) -> Self {
Self {
specializations: IndexMap::new(),
stats: SpecializationStats::default(),
config,
}
}
/// Create a new type specializer with default configuration
pub fn with_defaults() -> Self {
Self::new(SpecializationConfig::default())
}
/// Get or create a specialized version of a function
pub fn specialize_function(
&mut self,
function_name: &str,
param_types: &[SpecializedType],
return_type: Option<SpecializedType>,
original_module: &IrModule,
) -> JitResult<SpecializedFunction> {
let key = SpecializationKey {
function_name: function_name.to_string(),
param_types: param_types.to_vec(),
return_type,
};
// Check if specialization already exists
if let Some(specialized) = self.specializations.get_mut(&key) {
specialized.usage_count += 1;
self.stats.cache_hits += 1;
return Ok(specialized.clone());
}
self.stats.cache_misses += 1;
// Check if we should create a new specialization (separate scope to avoid borrow issues)
let should_specialize = {
// Count existing specializations for this function
let existing_count = self
.specializations
.keys()
.filter(|k| k.function_name == key.function_name)
.count();
if existing_count >= self.config.max_specializations_per_function {
false
} else {
self.is_specialization_beneficial(&key)
}
};
if !should_specialize {
return Err(JitError::OptimizationError(
"Specialization not beneficial".to_string(),
));
}
// Create the specialized function
let start_time = std::time::Instant::now();
let specialized_module = self.create_specialized_module(original_module, &key)?;
let compile_time = start_time.elapsed().as_nanos() as u64;
let perf_info = self.estimate_performance(&specialized_module)?;
let specialized_fn = SpecializedFunction {
key: key.clone(),
module: specialized_module,
perf_info,
usage_count: 1,
compile_time_ns: compile_time,
};
self.specializations.insert(key, specialized_fn.clone());
self.stats.total_specializations += 1;
self.stats.avg_compilation_time_ns = (self.stats.avg_compilation_time_ns
* (self.stats.total_specializations - 1) as u64
+ compile_time)
/ self.stats.total_specializations as u64;
Ok(specialized_fn)
}
/// Determine if a specialization would be beneficial
fn is_specialization_beneficial(&self, key: &SpecializationKey) -> bool {
// Always specialize for constant values
if self.config.enable_constant_specialization {
for param_type in &key.param_types {
if param_type.constant_value.is_some() {
return true;
}
}
}
// Check for beneficial shape specializations
if self.config.enable_shape_specialization {
for param_type in &key.param_types {
if let Some(shape) = ¶m_type.shape {
// Small, fixed shapes are good candidates
if shape.iter().product::<usize>() < 1024 {
return true;
}
// Power-of-2 shapes often vectorize well
if shape.iter().all(|&dim| dim.is_power_of_two()) {
return true;
}
}
}
}
// Check for layout optimizations
if self.config.enable_layout_specialization {
for param_type in &key.param_types {
if param_type.layout_hints.contiguous || param_type.layout_hints.layout.is_some() {
return true;
}
}
}
false
}
/// Create a specialized version of the IR module
fn create_specialized_module(
&self,
original: &IrModule,
key: &SpecializationKey,
) -> JitResult<IrModule> {
let mut specialized = original.clone();
specialized.name = format!(
"{}_{}",
original.name,
self.generate_specialization_suffix(key)
);
// Apply type-specific optimizations
self.apply_type_optimizations(&mut specialized, key)?;
// Apply shape-specific optimizations
self.apply_shape_optimizations(&mut specialized, key)?;
// Apply constant propagation
self.apply_constant_propagation(&mut specialized, key)?;
// Apply layout optimizations
self.apply_layout_optimizations(&mut specialized, key)?;
Ok(specialized)
}
/// Generate a unique suffix for the specialization
fn generate_specialization_suffix(&self, key: &SpecializationKey) -> String {
use std::collections::hash_map::DefaultHasher;
use std::hash::{Hash, Hasher};
let mut hasher = DefaultHasher::new();
key.hash(&mut hasher);
format!("{:x}", hasher.finish())
}
/// Apply type-specific optimizations
fn apply_type_optimizations(
&self,
module: &mut IrModule,
key: &SpecializationKey,
) -> JitResult<()> {
// Replace generic operations with type-specific ones
for (_, block) in module.blocks.iter_mut() {
for instruction in &mut block.instructions {
match instruction.opcode {
IrOpcode::Add | IrOpcode::Sub | IrOpcode::Mul | IrOpcode::Div => {
// Could specialize to SIMD instructions for specific types
if let Some(param_type) = key.param_types.first() {
match param_type.base_type {
TypeKind::F32 => {
// Could use vectorized f32 operations
}
TypeKind::F64 => {
// Could use vectorized f64 operations
}
TypeKind::I32 => {
// Could use integer-specific optimizations
}
_ => {}
}
}
}
_ => {}
}
}
}
Ok(())
}
/// Apply shape-specific optimizations
fn apply_shape_optimizations(
&self,
module: &mut IrModule,
key: &SpecializationKey,
) -> JitResult<()> {
for param_type in &key.param_types {
if let Some(shape) = ¶m_type.shape {
// Unroll loops for small, known shapes
if shape.iter().product::<usize>() < 64 {
self.unroll_small_loops(module, shape)?;
}
// Optimize memory access patterns for specific shapes
self.optimize_memory_access(module, shape)?;
}
}
Ok(())
}
/// Apply constant propagation optimizations
fn apply_constant_propagation(
&self,
module: &mut IrModule,
key: &SpecializationKey,
) -> JitResult<()> {
for param_type in &key.param_types {
if let Some(const_val) = ¶m_type.constant_value {
// Replace parameter with constant throughout the module
self.propagate_constant(module, const_val)?;
}
}
Ok(())
}
/// Apply layout-specific optimizations
fn apply_layout_optimizations(
&self,
module: &mut IrModule,
key: &SpecializationKey,
) -> JitResult<()> {
for param_type in &key.param_types {
match ¶m_type.layout_hints.layout {
Some(DataLayout::RowMajor) => {
// Optimize for row-major access patterns
self.optimize_for_row_major(module)?;
}
Some(DataLayout::ColumnMajor) => {
// Optimize for column-major access patterns
self.optimize_for_column_major(module)?;
}
Some(DataLayout::Packed) => {
// Optimize for packed data
self.optimize_for_packed_data(module)?;
}
_ => {}
}
}
Ok(())
}
/// Unroll loops for small, known iteration counts
fn unroll_small_loops(&self, _module: &mut IrModule, shape: &[usize]) -> JitResult<()> {
// Find loops with small iteration counts (< 16)
let max_unroll_iterations = 16;
// Simple heuristic: if any dimension is small enough, we could unroll
let _small_dims: Vec<_> = shape
.iter()
.filter(|&&dim| dim <= max_unroll_iterations)
.collect();
// Loop unrolling would happen here by:
// 1. Identifying loop structures in the IR
// 2. Checking iteration bounds
// 3. Replicating loop body for each iteration
// 4. Eliminating loop control overhead
// For now, this is a placeholder that acknowledges the optimization opportunity
Ok(())
}
/// Optimize memory access patterns
fn optimize_memory_access(&self, module: &mut IrModule, shape: &[usize]) -> JitResult<()> {
use crate::ir::IrOpcode;
use std::collections::HashMap;
// Track memory accesses and their patterns
let mut access_patterns: HashMap<crate::ir::IrValue, Vec<usize>> = HashMap::new();
for (_block_id, block) in &module.blocks {
for (idx, instruction) in block.instructions.iter().enumerate() {
match instruction.opcode {
IrOpcode::Load | IrOpcode::Store => {
if let Some(ptr_val) = instruction.operands.first() {
access_patterns.entry(*ptr_val).or_default().push(idx);
}
}
_ => {}
}
}
}
// Identify optimization opportunities
for (ptr_val, accesses) in &access_patterns {
if accesses.len() > 4 {
// Multiple accesses to same pointer - candidate for prefetching
self.insert_prefetch_hints(module, *ptr_val, accesses)?;
}
// Check for stride patterns
if self.has_regular_stride(accesses) {
self.optimize_strided_access(module, *ptr_val, shape)?;
}
}
Ok(())
}
/// Insert prefetch hints for frequently accessed memory
fn insert_prefetch_hints(
&self,
_module: &mut IrModule,
_ptr: crate::ir::IrValue,
_accesses: &[usize],
) -> JitResult<()> {
// Prefetch hints would be inserted here
// Implementation depends on target architecture
Ok(())
}
/// Check if memory accesses follow a regular stride pattern
fn has_regular_stride(&self, accesses: &[usize]) -> bool {
if accesses.len() < 2 {
return false;
}
// Check if instruction indices have regular spacing
let mut strides = Vec::new();
for i in 1..accesses.len() {
strides.push(accesses[i] - accesses[i - 1]);
}
// Check if all strides are equal
if strides.is_empty() {
return false;
}
let first_stride = strides[0];
strides.iter().all(|&s| s == first_stride)
}
/// Optimize strided memory accesses
fn optimize_strided_access(
&self,
_module: &mut IrModule,
_ptr: crate::ir::IrValue,
_shape: &[usize],
) -> JitResult<()> {
// Could vectorize or reorder strided accesses
// Implementation would transform memory access patterns
Ok(())
}
/// Propagate constant values throughout the module
fn propagate_constant(
&self,
module: &mut IrModule,
_const_val: &ConstantValue,
) -> JitResult<()> {
use crate::ir::ValueKind;
use std::collections::HashMap;
// Build constant value map by identifying constant values
let mut constants: HashMap<crate::ir::IrValue, crate::ir::IrValue> = HashMap::new();
// Identify constant values based on ValueKind
for (val_id, val_def) in &module.values {
match &val_def.kind {
ValueKind::Constant { .. } => {
// This is a constant value
constants.insert(*val_id, *val_id);
}
_ => {}
}
}
// Constant propagation would:
// 1. Identify all constant values in the module
// 2. Track constant values through the dataflow
// 3. Replace uses of computed constants with direct constant references
// 4. Fold constant expressions at compile time
// For now, this is a simplified implementation
let _constant_count = constants.len();
Ok(())
}
/// Optimize for row-major memory layout
fn optimize_for_row_major(&self, module: &mut IrModule) -> JitResult<()> {
use crate::ir::IrOpcode;
// Row-major layout optimization: optimize innermost loop first
// Collect blocks to optimize first to avoid borrow checker issues
let mut blocks_to_optimize = Vec::new();
for (block_id, block) in &module.blocks {
for instruction in &block.instructions {
match instruction.opcode {
IrOpcode::MatMul | IrOpcode::Conv2d => {
blocks_to_optimize.push(*block_id);
break;
}
_ => {}
}
}
}
// Now apply optimizations
for block_id in blocks_to_optimize {
self.apply_row_major_tiling(module, block_id)?;
}
Ok(())
}
/// Apply row-major tiling to a block
fn apply_row_major_tiling(
&self,
_module: &mut IrModule,
_block_id: crate::ir::BlockId,
) -> JitResult<()> {
// Implementation would:
// 1. Identify loop nests
// 2. Reorder loops to access contiguous memory
// 3. Apply cache blocking/tiling
Ok(())
}
/// Optimize for column-major memory layout
fn optimize_for_column_major(&self, module: &mut IrModule) -> JitResult<()> {
use crate::ir::IrOpcode;
// Column-major layout optimization: iterate over columns first
// Collect blocks to optimize first to avoid borrow checker issues
let mut blocks_to_optimize = Vec::new();
for (block_id, block) in &module.blocks {
for instruction in &block.instructions {
match instruction.opcode {
IrOpcode::MatMul => {
blocks_to_optimize.push(*block_id);
break;
}
IrOpcode::Transpose => {
// Transpose operations are no-ops in column-major layout
// Could eliminate redundant transposes
}
_ => {}
}
}
}
// Now apply optimizations
for block_id in blocks_to_optimize {
self.apply_column_major_tiling(module, block_id)?;
}
Ok(())
}
/// Apply column-major tiling to a block
fn apply_column_major_tiling(
&self,
_module: &mut IrModule,
_block_id: crate::ir::BlockId,
) -> JitResult<()> {
// Implementation would:
// 1. Identify loop nests
// 2. Reorder loops for column-wise access
// 3. Insert appropriate prefetch hints
Ok(())
}
/// Optimize for packed data layout
fn optimize_for_packed_data(&self, module: &mut IrModule) -> JitResult<()> {
// Packed data optimization: eliminate padding, use SIMD efficiently
let mut packed_values = Vec::new();
for (val_id, val_def) in &module.values {
// Identify values that could benefit from packing
if self.is_packable_value(val_def) {
packed_values.push(*val_id);
}
}
// Apply packing transformations
for val_id in packed_values {
self.pack_value(module, val_id)?;
}
Ok(())
}
/// Check if a value can be packed
fn is_packable_value(&self, val_def: &crate::ir::ValueDef) -> bool {
use crate::ir::ValueKind;
// Values with small element types (i8, i16, f16) can be packed efficiently
// Check the value kind to determine if packing would be beneficial
matches!(val_def.kind, ValueKind::Instruction { .. })
}
/// Pack a value for more efficient storage and access
fn pack_value(&self, _module: &mut IrModule, _val_id: crate::ir::IrValue) -> JitResult<()> {
// Implementation would:
// 1. Analyze value usage patterns
// 2. Transform to packed representation
// 3. Update all uses to handle packed format
// 4. Insert pack/unpack operations where needed
Ok(())
}
/// Estimate performance characteristics of a specialized function
fn estimate_performance(&self, module: &IrModule) -> JitResult<PerformanceInfo> {
let mut perf_info = PerformanceInfo::default();
// Count operations and estimate execution time
let mut op_count = 0;
let mut memory_ops = 0;
for (_, block) in &module.blocks {
for instruction in &block.instructions {
op_count += 1;
match instruction.opcode {
IrOpcode::Load | IrOpcode::Store => memory_ops += 1,
_ => {}
}
}
}
// Simple heuristic estimates
perf_info.estimated_exec_time_ns = op_count * 10; // ~10ns per operation
perf_info.memory_bandwidth = memory_ops * 64; // ~64 bytes per memory op
perf_info.arithmetic_intensity = if memory_ops > 0 {
(op_count - memory_ops) as f64 / memory_ops as f64
} else {
f64::INFINITY
};
Ok(perf_info)
}
/// Get specialization statistics
pub fn stats(&self) -> &SpecializationStats {
&self.stats
}
/// Clear all specializations (for memory management)
pub fn clear_cache(&mut self) {
self.specializations.clear();
self.stats = SpecializationStats::default();
}
/// Get the number of specializations for a function
pub fn specialization_count(&self, function_name: &str) -> usize {
self.specializations
.keys()
.filter(|k| k.function_name == function_name)
.count()
}
/// List all specialized functions
pub fn list_specializations(&self) -> Vec<&SpecializationKey> {
self.specializations.keys().collect()
}
}
/// Helper function to create specialized type from DType and Shape
pub fn create_specialized_type(dtype: DType, shape: Option<Shape>) -> SpecializedType {
let base_type = match dtype {
DType::F16 => TypeKind::F16,
DType::F32 => TypeKind::F32,
DType::F64 => TypeKind::F64,
DType::I8 => TypeKind::I8,
DType::I16 => TypeKind::I16,
DType::I32 => TypeKind::I32,
DType::I64 => TypeKind::I64,
DType::U8 => TypeKind::U8,
DType::U32 => TypeKind::U32,
DType::U64 => TypeKind::U64,
DType::Bool => TypeKind::Bool,
DType::BF16 => TypeKind::F16, // Map BF16 to F16 for now
DType::C64 => TypeKind::C64,
DType::C128 => TypeKind::C128,
DType::QInt8 | DType::QUInt8 => TypeKind::I8, // Map quantized 8-bit types to base types
DType::QInt32 => TypeKind::I32, // Map quantized 32-bit type to I32
};
let shape_vec = shape.map(|s| s.dims().to_vec());
SpecializedType {
base_type,
shape: shape_vec,
constant_value: None,
layout_hints: LayoutHints::default(),
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_specialization_key_equality() {
let key1 = SpecializationKey {
function_name: "test_fn".to_string(),
param_types: vec![SpecializedType {
base_type: TypeKind::F32,
shape: Some(vec![2, 2]),
constant_value: None,
layout_hints: LayoutHints::default(),
}],
return_type: None,
};
let key2 = key1.clone();
assert_eq!(key1, key2);
}
#[test]
fn test_specializer_creation() {
let specializer = TypeSpecializer::with_defaults();
assert_eq!(specializer.specializations.len(), 0);
assert_eq!(specializer.stats.total_specializations, 0);
}
#[test]
fn test_create_specialized_type() {
let dtype = DType::F32;
let shape = Some(Shape::new(vec![2, 3]));
let spec_type = create_specialized_type(dtype, shape);
assert_eq!(spec_type.base_type, TypeKind::F32);
assert_eq!(spec_type.shape, Some(vec![2, 3]));
}
}