pub struct CompilationConfig {
pub logger: LoggerConfig<CompilationLogLevel>,
pub cache: Option<CacheConfig>,
}
Expand description
Configuration for compilation settings in CubeCL.
Fields§
§logger: LoggerConfig<CompilationLogLevel>
Logger configuration for compilation logs, using binary log levels.
cache: Option<CacheConfig>
Cache location for storing compiled kernels.
Trait Implementations§
Source§impl Clone for CompilationConfig
impl Clone for CompilationConfig
Source§fn clone(&self) -> CompilationConfig
fn clone(&self) -> CompilationConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CompilationConfig
impl Debug for CompilationConfig
Source§impl Default for CompilationConfig
impl Default for CompilationConfig
Source§fn default() -> CompilationConfig
fn default() -> CompilationConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompilationConfig
impl<'de> Deserialize<'de> for CompilationConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CompilationConfig
impl RefUnwindSafe for CompilationConfig
impl Send for CompilationConfig
impl Sync for CompilationConfig
impl Unpin for CompilationConfig
impl UnwindSafe for CompilationConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more