LMFuser 0.4.0__tar.gz → 0.4.2__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.
Files changed (26) hide show
  1. {lmfuser-0.4.0 → lmfuser-0.4.2}/PKG-INFO +2 -2
  2. {lmfuser-0.4.0 → lmfuser-0.4.2}/pyproject.toml +2 -2
  3. {lmfuser-0.4.0 → lmfuser-0.4.2}/src/lmfuser/runners/ddp_runner.py +306 -86
  4. {lmfuser-0.4.0 → lmfuser-0.4.2}/src/lmfuser/task.py +16 -3
  5. lmfuser-0.4.2/src/lmfuser/utils.py +437 -0
  6. lmfuser-0.4.2/tests/_gather_worker.py +25 -0
  7. lmfuser-0.4.2/tests/_gather_worker_conflict.py +17 -0
  8. lmfuser-0.4.2/tests/_gather_worker_cpu.py +12 -0
  9. lmfuser-0.4.2/tests/_gather_worker_multi.py +37 -0
  10. lmfuser-0.4.2/tests/_gather_worker_spec.py +25 -0
  11. lmfuser-0.4.2/tests/_gather_worker_symmetry.py +155 -0
  12. lmfuser-0.4.2/tests/test_gather.py +106 -0
  13. lmfuser-0.4.2/tests/test_runner_robustness.py +245 -0
  14. lmfuser-0.4.0/src/lmfuser/utils.py +0 -248
  15. {lmfuser-0.4.0 → lmfuser-0.4.2}/.github/workflows/python-publish.yml +0 -0
  16. {lmfuser-0.4.0 → lmfuser-0.4.2}/.gitignore +0 -0
  17. {lmfuser-0.4.0 → lmfuser-0.4.2}/.vscode/settings.json +0 -0
  18. {lmfuser-0.4.0 → lmfuser-0.4.2}/LICENSE +0 -0
  19. {lmfuser-0.4.0 → lmfuser-0.4.2}/README.md +0 -0
  20. {lmfuser-0.4.0 → lmfuser-0.4.2}/src/lmfuser/__init__.py +0 -0
  21. {lmfuser-0.4.0 → lmfuser-0.4.2}/src/lmfuser/model_loader.py +0 -0
  22. {lmfuser-0.4.0 → lmfuser-0.4.2}/src/lmfuser/optimizers.py +0 -0
  23. {lmfuser-0.4.0 → lmfuser-0.4.2}/src/lmfuser/runners/__init__.py +0 -0
  24. {lmfuser-0.4.0 → lmfuser-0.4.2}/src/lmfuser/runners/runner.py +0 -0
  25. {lmfuser-0.4.0 → lmfuser-0.4.2}/src/lmfuser/schedulers.py +0 -0
  26. {lmfuser-0.4.0 → lmfuser-0.4.2}/tests/test_fsdp2_compile.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: LMFuser
3
- Version: 0.4.0
3
+ Version: 0.4.2
4
4
  Summary: The LMFuser training framework.
5
5
  Project-URL: Homepage, https://github.com/TYTTYTTYT/LMFuser
6
6
  Project-URL: Documentation, https://github.com/TYTTYTTYT/LMFuser
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3 :: Only
17
17
  Classifier: Topic :: Utilities
18
18
  Requires-Python: >=3.11
19
19
  Requires-Dist: hyperargs>=0.1.3
20
- Requires-Dist: lmfuser-data>=0.3.0
20
+ Requires-Dist: lmfuser-data>=0.3.2
21
21
  Requires-Dist: numpy
22
22
  Requires-Dist: pandas
23
23
  Requires-Dist: pyarrow
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "LMFuser"
7
- version = "0.4.0"
7
+ version = "0.4.2"
8
8
  requires-python = ">= 3.11"
9
9
  description = "The LMFuser training framework."
10
10
  readme = "README.md"
@@ -20,7 +20,7 @@ dependencies = [
20
20
  "pandas",
21
21
  "pyarrow",
22
22
  "torch>=2.4.0",
23
- "LMFuser-data>=0.3.0",
23
+ "LMFuser-data>=0.3.2",
24
24
  "tqdm",
25
25
  "wandb",
26
26
  "HyperArgs>=0.1.3",