First steps towards matrix multiplication

This commit is contained in:
2024-01-01 18:48:37 +01:00
parent dfa773b839
commit 05f184d51f
8 changed files with 409 additions and 197 deletions

View File

@@ -64,8 +64,8 @@ impl Kernel {
#[derive(Debug, Serialize, Deserialize)]
pub struct PimConfig {
pub bank_mode: BankMode,
pub kernel: Kernel,
pub bank_mode: Option<BankMode>,
pub kernel: Option<Kernel>,
}
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]