oxilean_codegen/opt_cache/cacheoptconfig_traits.rs
1//! # CacheOptConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `CacheOptConfig`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::{CacheOptConfig, LoopTilingConfig};
12
13impl Default for CacheOptConfig {
14 fn default() -> Self {
15 CacheOptConfig {
16 cache_line_size: 64,
17 prefetch_distance: 8,
18 enable_prefetch: true,
19 tiling: LoopTilingConfig::default(),
20 }
21 }
22}