eae-runtime 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- eae_runtime-0.1.1/CHANGELOG.md +34 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/PKG-INFO +6 -2
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/README.md +5 -1
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/_version.py +3 -3
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime.egg-info/PKG-INFO +6 -2
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime.egg-info/SOURCES.txt +1 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime.egg-info/scm_file_list.json +1 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime.egg-info/scm_version.json +2 -2
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/.github/workflows/ci.yml +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/.github/workflows/publish.yml +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/.gitignore +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/LICENSE +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/__init__.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/adjoint.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/backend.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/blocks.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/boundary_store.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/config.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/contrib/__init__.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/contrib/transformer_blocks.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/events.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/forward_executor.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/logging_utils.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/memory.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/passes/__init__.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/passes/base.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/passes/clip.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/passes/logging_pass.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/passes/quantize.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/passes/regularization.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/passes/synthetic_gradient.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/pipeline.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/profiler.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/py.typed +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/reconstruction.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/runtime.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/schedulers/__init__.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/schedulers/async_scheduler.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/schedulers/base.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/schedulers/distributed.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/schedulers/pipeline_scheduler.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime/schedulers/sequential.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime.egg-info/dependency_links.txt +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime.egg-info/requires.txt +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/eae_runtime.egg-info/top_level.txt +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/examples/train_transformer_lm.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/pyproject.toml +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/setup.cfg +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/conftest.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_adjoint.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_backend.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_boundary_store.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_config_and_blocks.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_contrib_transformer_blocks.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_distributed_multiprocess.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_end_to_end_transformer.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_events.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_gradient_equivalence.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_memory_leaks.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_memory_manager.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_mixed_precision.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_passes.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_profiler.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_reconstruction.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_runtime.py +0 -0
- {eae_runtime-0.1.0 → eae_runtime-0.1.1}/tests/test_schedulers.py +0 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.1.1] - 2026-07-19
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Updated README install instructions to show `pip install eae-runtime` as the
|
|
14
|
+
primary install method, with the editable/dev install moved to its own
|
|
15
|
+
Development section.
|
|
16
|
+
|
|
17
|
+
## [0.1.0] - 2026-07-19
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Initial public release of the EAE runtime: block decomposer, forward
|
|
21
|
+
executor, boundary state store, reverse schedulers (sequential, async,
|
|
22
|
+
pipeline, distributed), reconstruction engine, and adjoint pipeline.
|
|
23
|
+
- Built-in passes: `ClipPass`, `FP16Pass`, `Int8QuantizationPass` (`FP8Pass`),
|
|
24
|
+
`SyntheticGradientPass`, `RegularizationPass`, `GaussianNoisePass`,
|
|
25
|
+
`LoggingPass`.
|
|
26
|
+
- Event bus with structured events and optional JSON logging.
|
|
27
|
+
- Profiler for per-stage timing.
|
|
28
|
+
- Test suite covering gradient equivalence against `model.backward()`,
|
|
29
|
+
memory management, boundary store, and a real two-process distributed
|
|
30
|
+
correctness check.
|
|
31
|
+
|
|
32
|
+
[Unreleased]: https://github.com/VladimerKhasia/eae_runtime/compare/v0.1.1...HEAD
|
|
33
|
+
[0.1.1]: https://github.com/VladimerKhasia/eae_runtime/compare/v0.1.0...v0.1.1
|
|
34
|
+
[0.1.0]: https://github.com/VladimerKhasia/eae_runtime/releases/tag/v0.1.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eae-runtime
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A programmable, block-local reverse-mode execution engine that orchestrates PyTorch's local autograd (Explicit Adjoint Exposure runtime).
|
|
5
5
|
Author: Vladimer Khasia
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -55,9 +55,11 @@ type, no compiler, no FX, no PyTorch internals modified.
|
|
|
55
55
|
## Install
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
|
-
pip install -
|
|
58
|
+
pip install eae-runtime
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
+
<!-- # pip install -e . -->
|
|
62
|
+
|
|
61
63
|
## Quick start
|
|
62
64
|
|
|
63
65
|
```python
|
|
@@ -194,6 +196,8 @@ print(runtime.profiler.report())
|
|
|
194
196
|
## Testing
|
|
195
197
|
|
|
196
198
|
```bash
|
|
199
|
+
git clone https://github.com/VladimerKhasia/eae_runtime
|
|
200
|
+
cd eae_runtime
|
|
197
201
|
pip install -e ".[dev]"
|
|
198
202
|
pytest
|
|
199
203
|
```
|
|
@@ -18,9 +18,11 @@ type, no compiler, no FX, no PyTorch internals modified.
|
|
|
18
18
|
## Install
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
pip install -
|
|
21
|
+
pip install eae-runtime
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
<!-- # pip install -e . -->
|
|
25
|
+
|
|
24
26
|
## Quick start
|
|
25
27
|
|
|
26
28
|
```python
|
|
@@ -157,6 +159,8 @@ print(runtime.profiler.report())
|
|
|
157
159
|
## Testing
|
|
158
160
|
|
|
159
161
|
```bash
|
|
162
|
+
git clone https://github.com/VladimerKhasia/eae_runtime
|
|
163
|
+
cd eae_runtime
|
|
160
164
|
pip install -e ".[dev]"
|
|
161
165
|
pytest
|
|
162
166
|
```
|
|
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
|
|
|
18
18
|
commit_id: str | None
|
|
19
19
|
__commit_id__: str | None
|
|
20
20
|
|
|
21
|
-
__version__ = version = '0.1.
|
|
22
|
-
__version_tuple__ = version_tuple = (0, 1,
|
|
21
|
+
__version__ = version = '0.1.1'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 1, 1)
|
|
23
23
|
|
|
24
|
-
__commit_id__ = commit_id = '
|
|
24
|
+
__commit_id__ = commit_id = 'g180dc1c45'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eae-runtime
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A programmable, block-local reverse-mode execution engine that orchestrates PyTorch's local autograd (Explicit Adjoint Exposure runtime).
|
|
5
5
|
Author: Vladimer Khasia
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -55,9 +55,11 @@ type, no compiler, no FX, no PyTorch internals modified.
|
|
|
55
55
|
## Install
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
|
-
pip install -
|
|
58
|
+
pip install eae-runtime
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
+
<!-- # pip install -e . -->
|
|
62
|
+
|
|
61
63
|
## Quick start
|
|
62
64
|
|
|
63
65
|
```python
|
|
@@ -194,6 +196,8 @@ print(runtime.profiler.report())
|
|
|
194
196
|
## Testing
|
|
195
197
|
|
|
196
198
|
```bash
|
|
199
|
+
git clone https://github.com/VladimerKhasia/eae_runtime
|
|
200
|
+
cd eae_runtime
|
|
197
201
|
pip install -e ".[dev]"
|
|
198
202
|
pytest
|
|
199
203
|
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|