We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01ea473 commit 5e33905Copy full SHA for 5e33905
src/layout.rs
@@ -33,7 +33,8 @@ impl MatrixLayout {
33
34
pub fn lda(&self) -> LDA {
35
match *self {
36
- MatrixLayout::C((_, lda)) | MatrixLayout::F((_, lda)) => lda,
+ MatrixLayout::C((_, lda)) |
37
+ MatrixLayout::F((_, lda)) => lda,
38
}
39
40
@@ -122,7 +123,9 @@ where
122
123
124
125
fn as_allocated(&self) -> Result<&[A]> {
- Ok(self.as_slice_memory_order().ok_or_else(MemoryContError::new)?)
126
+ Ok(self.as_slice_memory_order().ok_or_else(
127
+ MemoryContError::new,
128
+ )?)
129
130
131
0 commit comments