Skip to content

Commit 94ec2e0

Browse files
author
semantic-release
committed
chore(release): 0.11.2
1 parent 9f9770a commit 94ec2e0

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# CHANGELOG
22

33

4+
## v0.11.2 (2026-03-02)
5+
6+
### Performance Improvements
7+
8+
- **postprocess**: Optimize 6 remaining hot-path bottlenecks in log_forward_pass
9+
([`ed62350`](https://github.com/johnmarktaylor91/torchlens/commit/ed623508d8f8353634066cc4702d39bf8f0ca981))
10+
11+
Cache dir() per type, replace sorted deque with heapq in loop detection, use __dict__ + empty-field
12+
skip in label renaming, two-phase stack capture, batch orphan removal, and shadow sets for module
13+
hierarchy membership checks. 8-33% wall time reduction across models.
14+
15+
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16+
17+
418
## v0.11.1 (2026-03-02)
519

620
### Performance Improvements

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "torchlens"
7-
version = "0.11.1"
7+
version = "0.11.2"
88
description = "A package for extracting activations from PyTorch models"
99
readme = "README.md"
1010
license = "GPL-3.0-only"

torchlens/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Top level package: make the user-facing functions top-level, rest accessed as submodules."""
22

3-
__version__ = "0.11.1"
3+
__version__ = "0.11.2"
44

55
from .user_funcs import (
66
log_forward_pass,

0 commit comments

Comments
 (0)