+8
-4
Diff
round #0
+2
-2
Cargo.lock
+2
-2
Cargo.lock
···
873
873
874
874
[[package]]
875
875
name = "quote"
876
-
version = "1.0.44"
876
+
version = "1.0.45"
877
877
source = "registry+https://github.com/rust-lang/crates.io-index"
878
-
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
878
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
879
879
dependencies = [
880
880
"proc-macro2",
881
881
]
+1
-1
Cargo.toml
+1
-1
Cargo.toml
+5
-1
embassy-strike-driver/src/analysis.rs
+5
-1
embassy-strike-driver/src/analysis.rs
···
12
12
let mut total = 0u32;
13
13
let mut len = 0u32;
14
14
15
-
for (i, window) in buf.windows(CHUNK_SIZE).enumerate().step_by(CHUNK_STEP) {
15
+
for (i, window) in buf
16
+
.array_windows::<CHUNK_SIZE>()
17
+
.enumerate()
18
+
.step_by(CHUNK_STEP)
19
+
{
16
20
let (window_total, window_diff) =
17
21
window
18
22
.iter()
History
3 rounds
0 comments
1 commit
expand
collapse
Use array windows for analysis method
1/1 success
expand
collapse
expand 0 comments
pull request successfully merged
1 commit
expand
collapse
Use array windows for analysis method
1/1 failed
expand
collapse
expand 0 comments
sachy.dev
submitted
#0
1 commit
expand
collapse
Use array windows for analysis method