Skip to content

Commit 8e37044

Browse files
author
Esteban Gómez
committed
Add BatchNorm1d and BatchNorm2d ops support
1 parent fac6e34 commit 8e37044

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

docs/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,6 @@ By default, all methods support all modules as long as these are instances of `t
125125
| `torch.nn.AdaptiveMaxPool2d` | :material-check: | 0.0.1 |
126126
| `torch.nn.MaxPool1d` | :material-check: | 0.0.1 |
127127
| `torch.nn.MaxPool2d` | :material-check: | 0.0.1 |
128-
| `torch.nn.LayerNorm` | :material-check: | 0.0.1 |
128+
| `torch.nn.LayerNorm` | :material-check: | 0.0.1 |
129+
| `torch.nn.BatchNorm1d` | :material-check: | 0.0.4 |
130+
| `torch.nn.BatchNorm2d` | :material-check: | 0.0.4 |

src/moduleprofiler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"Module profiler"
2-
__version__ = "0.0.3"
2+
__version__ = "0.0.4"
33

44
__all__ = [
55
"get_default_ops_map",

0 commit comments

Comments
 (0)