e0464e4788
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" ```
143 lines
3.6 KiB
Nix
143 lines
3.6 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonAtLeast,
|
|
|
|
# buildInputs
|
|
llvmPackages,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
numpy,
|
|
packaging,
|
|
psutil,
|
|
pyyaml,
|
|
safetensors,
|
|
torch,
|
|
|
|
# tests
|
|
evaluate,
|
|
parameterized,
|
|
pytest7CheckHook,
|
|
transformers,
|
|
config,
|
|
cudatoolkit,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "accelerate";
|
|
version = "0.34.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "huggingface";
|
|
repo = "accelerate";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-4kDNLta6gGev16A4hNOArTpoD8p6LMRwqwHS/DZjtz0=";
|
|
};
|
|
|
|
buildInputs = [ llvmPackages.openmp ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
numpy
|
|
packaging
|
|
psutil
|
|
pyyaml
|
|
safetensors
|
|
torch
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
evaluate
|
|
parameterized
|
|
pytest7CheckHook
|
|
transformers
|
|
];
|
|
preCheck =
|
|
''
|
|
export HOME=$(mktemp -d)
|
|
export PATH=$out/bin:$PATH
|
|
''
|
|
+ lib.optionalString config.cudaSupport ''
|
|
export TRITON_PTXAS_PATH="${cudatoolkit}/bin/ptxas"
|
|
'';
|
|
pytestFlagsArray = [ "tests" ];
|
|
disabledTests =
|
|
[
|
|
# try to download data:
|
|
"FeatureExamplesTests"
|
|
"test_infer_auto_device_map_on_t0pp"
|
|
|
|
# require socket communication
|
|
"test_explicit_dtypes"
|
|
"test_gated"
|
|
"test_invalid_model_name"
|
|
"test_invalid_model_name_transformers"
|
|
"test_no_metadata"
|
|
"test_no_split_modules"
|
|
"test_remote_code"
|
|
"test_transformers_model"
|
|
|
|
# nondeterministic, tests GC behaviour by thresholding global ram usage
|
|
"test_free_memory_dereferences_prepared_components"
|
|
|
|
# set the environment variable, CC, which conflicts with standard environment
|
|
"test_patch_environment_key_exists"
|
|
]
|
|
++ lib.optionals (pythonAtLeast "3.12") [
|
|
# RuntimeError: Dynamo is not supported on Python 3.12+
|
|
"test_convert_to_fp32"
|
|
"test_dynamo_extract_model"
|
|
"test_send_to_device_compiles"
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [
|
|
# usual aarch64-linux RuntimeError: DataLoader worker (pid(s) <...>) exited unexpectedly
|
|
"CheckpointTest"
|
|
# TypeError: unsupported operand type(s) for /: 'NoneType' and 'int' (it seems cpuinfo doesn't work here)
|
|
"test_mpi_multicpu_config_cmd"
|
|
]
|
|
++ lib.optionals (!config.cudaSupport) [
|
|
# requires ptxas from cudatoolkit, which is unfree
|
|
"test_dynamo_extract_model"
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isDarwin) [
|
|
# RuntimeError: 'accelerate-launch /nix/store/a7vhm7b74a7bmxc35j26s9iy1zfaqjs...
|
|
"test_accelerate_test"
|
|
"test_init_trackers"
|
|
"test_init_trackers"
|
|
"test_log"
|
|
"test_log_with_tensor"
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
|
|
# RuntimeError: torch_shm_manager: execl failed: Permission denied
|
|
"CheckpointTest"
|
|
];
|
|
|
|
disabledTestPaths = lib.optionals (!(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64)) [
|
|
# numerous instances of torch.multiprocessing.spawn.ProcessRaisedException:
|
|
"tests/test_cpu.py"
|
|
"tests/test_grad_sync.py"
|
|
"tests/test_metrics.py"
|
|
"tests/test_scheduler.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "accelerate" ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = {
|
|
homepage = "https://huggingface.co/docs/accelerate";
|
|
description = "Simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision";
|
|
changelog = "https://github.com/huggingface/accelerate/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ bcdarwin ];
|
|
mainProgram = "accelerate";
|
|
};
|
|
}
|