Skip to content

Commit 4b6aa18

Browse files
committed
feat: update bimm-contracts to 0.4.3 and fix typo in ResNet residual block
- Switched `bimm-contracts` to git-based dependency on the `main` branch and updated to 0.4.3. - Corrected a typo: replaced "out_planes" with "out_channels" in ResNet residual block output shapes.
1 parent bab85b2 commit 4b6aa18

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ burn = "^0.18.0"
3232
burn-import = "^0.18.0"
3333
dirs = "^6.0.0"
3434

35-
bimm-contracts = "^0.4.2"
35+
# bimm-contracts = "^0.4.2"
36+
bimm-contracts = { branch = "main", git = "https://github.com/crutcher/bimm-contracts", version = "^0.4.3" }
3637

3738
# Burn coupled-dependencies
3839
globwalk = "^0.9.1"

crates/bimm/src/models/resnet/residual_block.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ mod tests {
372372
&output,
373373
&[
374374
("batch", batch_size),
375-
("out_planes", planes),
375+
("out_channels", planes),
376376
("out_height", out_height),
377377
("out_width", out_width)
378378
],

0 commit comments

Comments
 (0)