summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/accelerate (follow)
Commit message (Expand)AuthorAgeFilesLines
* python3Packages.accelerate: skip failing test on aarch64-linuxGaetan Lepage2026-01-111-4/+11
* python314Packages.accelerate: disable failing testsSarah Clark2026-01-051-1/+9
* python3Packages.accelerate: 1.11.0 -> 1.12.0•••CHANGELOG: https://github.com/huggingface/accelerate/releases/tag/v1.12.0 DIFF: https://github.com/huggingface/accelerate/compare/v1.11.0...v1.12.0 Sarah Clark2025-11-281-2/+2
* python3Packages.accelerate: disable test_can_pickle_dataloader on DarwinSarah Clark2025-11-281-0/+3
* python3Packages.accelerate: 1.10.1 -> 1.11.0R. Ryantm2025-10-211-2/+2
* python3Packages.accelerate: 1.10.0 -> 1.10.1R. Ryantm2025-08-281-2/+2
* python3Packages.accelerate: disable test that fails to detect FSDP versionSarah Clark2025-08-121-0/+4
* python3Packages.accelerate: 1.9.0 -> 1.10.0R. Ryantm2025-08-101-2/+2
* python3Packages.accelerate: 1.7.0 -> 1.9.0 (#420124)Weijia Wang2025-08-051-3/+3
|\
| * python3Packages.accelerate: 1.7.0 -> 1.9.0R. Ryantm2025-07-231-3/+3
* | treewide: run nixfmt 1.0.0Wolfgang Walther2025-07-241-81/+80
|/
* Merge remote-tracking branch 'origin/master' into staging-nextK9002025-07-071-0/+7
|\
| * python3Packages.accelerate: disable tests that fail with an InductorErrorSarah Clark2025-07-051-4/+7
| * python3Packages.accelerate: disable test that fails in nixpkgs-review•••Testing test_config_compatibility in two pythons simultaneously causes a port conflict on Darwin. Sarah Clark2025-07-051-0/+4
* | treewide: pytestFlagsArray -> enabledTestPaths (trivial)Yueh-Shun Li2025-06-121-1/+1
|/
* python313Packages.accelerate: 1.5.2 -> 1.7.0•••https://github.com/huggingface/accelerate/releases/tag/v1.6.0 https://github.com/huggingface/accelerate/releases/tag/v1.7.0 Martin Weinelt2025-05-231-11/+5
* Merge remote-tracking branch 'origin/staging-next' into stagingK9002025-04-031-0/+9
|\
| * python312Packages.accelerate: fix tests on darwin•••If MPS devices are present, the library fails to handle the situation properly and fails when running a test case. Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com> Ihar Hrachyshka2025-04-011-0/+9
* | Merge staging-next into stagingnixpkgs-ci[bot]2025-03-261-3/+3
|\|
| * python312Packages.accelerate: 1.3.0 -> 1.5.2•••Diff: https://github.com/huggingface/accelerate/compare/refs/tags/v1.3.0...v1.5.2 Changelog: https://github.com/huggingface/accelerate/releases/tag/v1.5.2 Gaetan Lepage2025-03-251-3/+3
* | python312Packages.accelerate: skip torch.compile tests for ROCmLuna Nova2025-03-241-1/+2
|/
* Merge remote-tracking branch 'origin/master' into staging-next•••Conflicts: pkgs/development/python-modules/diffusers/default.nix Alyssa Ross2025-01-311-8/+8
|\
| * treewide: use `writableTmpDirAsHomeHook` (#378110)GaƩtan Lepage2025-01-311-8/+8
| |\
| | * python312Packages.accelerate: use `addBinToPathHook`, use `writableTmpDirAsHo...Pol Dellaiera2025-01-311-8/+8
| * | python312Packages.accelerate: update skipped testsGaetan Lepage2025-01-301-3/+4
| |/
* / python313Packages.accelerate: disable unsupported tests•••and finally migrate to pytest 8. Martin Weinelt2025-01-271-5/+6
|/
* python312Packages.accelerate: 1.2.1 -> 1.3.0 (#374761)•••https://github.com/huggingface/accelerate/releases/tag/v1.3.0R. RyanTM2025-01-181-2/+2
* python312Packages.accelerate: 1.2.0 -> 1.2.1R. Ryantm2024-12-161-2/+2
* python312Packages.accelerate: 1.1.0 -> 1.2.0•••Diff: https://github.com/huggingface/accelerate/compare/refs/tags/v1.1.0...v1.2.0 Changelog: https://github.com/huggingface/accelerate/releases/tag/v1.2.0 Gaetan Lepage2024-12-071-4/+4
* python3Packages.accelerate: disable some tests•••darwin: Disable some tests, which started failing after enabling MPS in pytorch package. Signed-off-by: Mika Tammi <mikatammi@gmail.com> Mika Tammi2024-11-021-0/+25
* python3Packages.accelerate: 1.0.0 -> 1.1.0•••Signed-off-by: Mika Tammi <mikatammi@gmail.com> Mika Tammi2024-11-021-2/+2
* python3Packages.accelerate: Add huggingface-hub•••Add huggingface-hub to the dependencies, this should fix various import errors. Signed-off-by: Mika Tammi <mikatammi@gmail.com> Mika Tammi2024-11-021-0/+2
* python312Packages.accelerate: 0.34.2 -> 1.0.0R. Ryantm2024-10-091-2/+2
* treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`•••In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ``` Artturin2024-09-251-4/+4
* python312Packages.accelerate: 0.34.0 -> 0.34.2•••Diff: https://github.com/huggingface/accelerate/compare/refs/tags/v0.34.0...v0.34.2 Changelog: https://github.com/huggingface/accelerate/releases/tag/v0.34.2 Gaetan Lepage2024-09-141-11/+24
* python312Packages.accelerate: 0.33.0 -> 0.34.0R. Ryantm2024-09-041-2/+2
* python312Packages.accelerate: 0.32.0 -> 0.33.0R. Ryantm2024-08-081-2/+2
* python312Packages.accelerate: 0.31.0 -> 0.32.0R. Ryantm2024-07-211-2/+2
* python3Packages.accelerate: 0.30.0 -> 0.31.0•••https://github.com/huggingface/accelerate/releases/tag/v0.31.0 Martin Weinelt2024-06-241-2/+2
* treewide: Remove indefinite article from meta.description•••nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/' Alexis Hildebrandt2024-06-091-1/+1
* python312Packages.accelerate: disable test_dynamo_extract_modelConnor Baker2024-05-251-0/+1
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-65/+69
* python311Packages.accelerate: disable nondeterministic testPeder Bergebakken Sundt2024-05-121-0/+3
* python311Packages.accelerate: fix darwin testsGaetan Lepage2024-05-111-0/+7
* python311Packages.accelerate: 0.29.3 -> 0.30.0•••Diff: https://github.com/huggingface/accelerate/compare/refs/tags/v0.29.3...v0.30.0 Changelog: https://github.com/huggingface/accelerate/releases/tag/v0.30.0 Gaetan Lepage2024-05-101-6/+6
* python3Packages.accelerate: disable problematic tests on aarch64-linuxseth2024-05-091-0/+2
* python3Packages.accelerate: 0.27.0 -> 0.29.3•••https://github.com/huggingface/accelerate/releases/tag/v0.29.3 Martin Weinelt2024-04-221-2/+7
* python311Packages.pytest7CheckHook: init•••and migrate existing overrides. Martin Weinelt2024-03-261-3/+2
* python3Packages.accelerate: 0.26.1 -> 0.27.0•••https://github.com/huggingface/accelerate/releases/tag/v0.27.0 Martin Weinelt2024-03-121-3/+4
* python311Packages.accelerate: make cudatoolkit usage conditional•••Closes: #290035 Martin Weinelt2024-02-201-2/+4