Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ nohup.out
*.log
*.pyc
.vscode/settings.json
.agents/
5 changes: 5 additions & 0 deletions docs/toolchain/appendix/history.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@

## Toolchain Change log

* **[v0.33.1]**
* Improve LayerNorm decomposition performance.
* Improve handling for models that reuse weights across multiple operators.
* Improve constant folding reliability.
* Support ReduceMean fusion when `keepdims` is set to 0.
* **[v0.33.0]**
* Update TopK and Split node support.
* Improve per-channel radix handling for Mul nodes.
Expand Down
9 changes: 7 additions & 2 deletions docs/toolchain/manual_1_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

# 1. Toolchain Overview

**2026-05**
**Toolchain v0.33.0**
**2026-06**
**Toolchain v0.33.1**

## 1.1. Introduction

Expand All @@ -20,6 +20,11 @@ In this document, you'll learn:

**Major changes of the current version**

* **[v0.33.1]**
* Improve LayerNorm decomposition performance.
* Improve handling for models that reuse weights across multiple operators.
* Improve constant folding reliability.
* Support ReduceMean fusion when `keepdims` is set to 0.
* **[v0.33.0]**
* Update TopK and Split node support.
* Improve per-channel radix handling for Mul nodes.
Expand Down
Loading